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 LaravelServiceProvider::boot() there is a handler for the JobProcessed event which deletes the job from the queue.
Currently this is done without any conditions, even if the project uses other queue drivers, or even if the job was manually released previously. In case of manual release the job deletion prevents of the retry of the job, as the event is still dispatched so the job gets deleted.
The text was updated successfully, but these errors were encountered:
In the LaravelServiceProvider::boot() there is a handler for the JobProcessed event which deletes the job from the queue.
Currently this is done without any conditions, even if the project uses other queue drivers, or even if the job was manually released previously. In case of manual release the job deletion prevents of the retry of the job, as the event is still dispatched so the job gets deleted.
The text was updated successfully, but these errors were encountered: