Laravel Jobs Queue

0

I have a question, I'm trying to run the jobs using Supervisor to run concurrent jobs, but the command does not work with php artisan queue: work and yes with php artisan queue: work --queue = high, Migration I'm using QUEUE_DRIVER as a database, but I do not think it interferes ... the command I add jobs in the queue is

\App\Jobs\S3Migration::dispatch($file)->onQueue('Migration');

I run the page that has this code and adds everything to the queue, but if the Supervisor setting calls php artisan queue: work does not work, just running with php artisan queue: work --queue = high, Migration ... is it something I have to put in order to perform the tasks? or some other setting I have to put in the Supervisor?

    
asked by anonymous 30.11.2018 / 17:28

0 answers