2
I’m having a question, I’m trying to run the Jobs using the Supervisor to run Jobs, only the command doesn’t work with php Artisan Queue:work rather with php Artisan Queue:work --Queue=high, I’m using QUEUE_DRIVER as a database, but I don’t think it interferes... the command I add the Jobs to the queue is
\App\Jobs\S3Migration::dispatch($file)->onQueue('Migration');
I run the page that has this code and add everything to the queue, only if the Supervisor settings call the php Artisan Queue:work doesn’t work, just running with php Artisan Queue:work --Queue=high,... is it something I have to put in order for you to perform the tasks? or some other configuration I have to put in the Supervisor?
opa, I decided, I am actually managing for the Laravel Horizon and in the config of the Horrizon define my Queues
– braulio_holtz