I know that I can retry jobs that have failed in my Laravel application by using: php artisan queue:retry 5
OR php artisan queue:retry all
to push them back onto the queue.
What I would like to achieve though is to only retry failed jobs from a single queue. Such as php artisan queue:retry all --queue=emails
which does not work.
I could however go through each manually by ID php artisan queue:retry 5
but this does not help if I have 1000's of records.
So in summary, my question is, how can I retry all failed jobs on specific queue?