Closed
Description
We use capistrano for deployment. It seems to have some problems with symlinks or similar.
But we could break it down to the main problem.
When we config our supervisor path to e.g. tmp
or below the Symfony kernel root dir everything works as expected and supervisor gets started:
rabbit_mq_supervisor:
supervisor_instance_identifier: "%supervisor_instance_identifier%"
paths:
#workspace_directory: "/tmp/supervisor/%supervisor_instance_identifier%/"
workspace_directory: "%kernel.root_dir%/../../../supervisor/%supervisor_instance_identifier%/"
But if we keep the supervisor
dir inside the app
folder for instance the starting fails.
In both cases the files are created correctly.
When I run the command on the server with the non-working dir I don't get any response - no log entries - no process starting:
SYMFONY_ENV=prod app/console rabbitmq-supervisor:control start
Though the exception has been added in #22 there still seems to be something missing.
Is there a debug
or trace
argument I can use? Or some way to hack into this: