Hey guys
I'm deploying my app in production but I have issues with queues
they work properly in local
whenever I dispatch a job , it fires correctly and I get an email but jobs table always empty
I'm using supervisor to keep running the queue
this is my laravel-worker.conf
[program:email-queue]
process_name=%(program_name)s_%(process_num)02d
command=php /var/www/html/control-panel/artisan queue:work
autostart=true
autorestart=true
user=root
numprocs=2
redirect_stderr=true
stdout_logfile=/var/www/html/control-panel/storage/logs/emails.log
when I run supervisorctl status
I get :
email-queue:email-queue_00 RUNNING pid 17220, uptime 0:07:43
email-queue:email-queue_01 RUNNING pid 17213, uptime 0:07:45
I tried restarting all the workers by running
php artisan queue:restart
and no way...
is it an issue related to supervisor ??