My server is a custom virtual server running CentOS x64, node
installed and working. Assetic configuration:
assetic:
use_controller: false
node: /usr/bin/node
filters:
less:
node_paths: [/usr/lib/node_modules/]
When I access any page using a less filter I get the following error (content of CSS generated file):
exception] 500 | Internal Server Error | Symfony\Component\Process\Exception\RuntimeException
[message] The process has been signaled with signal "11".
[1] Symfony\Component\Process\Exception\RuntimeException: The process has been signaled with signal "11".
at n/a
in /var/www/vhosts/mydomain.it/vendor/symfony/symfony/src/Symfony/Component/Process/Process.php line 318
at Symfony\Component\Process\Process->wait()
in /var/www/vhosts/mydomain.it/vendor/symfony/symfony/src/Symfony/Component/Process/Process.php line 197
at Symfony\Component\Process\Process->run()
in /var/www/vhosts/mydomain.it/vendor/kriswallsmith/assetic/src/Assetic/Filter/LessFilter.php line 149
at Assetic\Filter\LessFilter->filterLoad(object(FileAsset))
in /var/www/vhosts/mydomain.it/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterCollection.php line 62
at Assetic\Filter\FilterCollection->filterLoad(object(FileAsset))
in /var/www/vhosts/mydomain.it/vendor/kriswallsmith/assetic/src/Assetic/Asset/BaseAsset.php line 90
at Assetic\Asset\BaseAsset->doLoad('@vendor-dir: "../../../../../vendor";
However dumping assets using php app/console assetic:dump --env=dev
works fine as expected. Any help is much appreciated, thanks.
EDIT: I opened a issue here.