You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the queue worker you can add some priorities on queues. Now this runs perfectly in de background and handles the jobs.
But in the UI you cannot see your comma separated queues like php artisan queue:work --queue=high,low,default
In frontend you can only see the latest queue, default. Queue high/low aren't presented. And the queue is constantly refresh so you ended up with 0 jobs done. It seems like the queue clears the done jobs.
On the other hand I created multiple workers each with one queue like php artisan queue:work --queue=high php artisan queue:work --queue=low php artisan queue:work --queue=default
Now I can see the queue list properly with high, low and default. And no reset of jobs done. (y)
I don't know if this problem is yours but I've noticed it.
The text was updated successfully, but these errors were encountered:
Hi,
In the queue worker you can add some priorities on queues. Now this runs perfectly in de background and handles the jobs.
But in the UI you cannot see your comma separated queues like
php artisan queue:work --queue=high,low,default
In frontend you can only see the latest queue, default. Queue high/low aren't presented. And the queue is constantly refresh so you ended up with 0 jobs done. It seems like the queue clears the done jobs.
On the other hand I created multiple workers each with one queue like
php artisan queue:work --queue=high
php artisan queue:work --queue=low
php artisan queue:work --queue=default
Now I can see the queue list properly with high, low and default. And no reset of jobs done. (y)
I don't know if this problem is yours but I've noticed it.
The text was updated successfully, but these errors were encountered: