Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[5.1] BeanstalkdJob bury function delete job unexpectedly (#13963)
* [BUG][5.1] Beanstalkd bury job is not working Job will be deleted whenever bury job function is called. Due to the release flag is not mark, every job goin to bury will be delete eventually. ```php if (! $job->isDeletedOrReleased()) { $job->delete(); } ``` * Update BeanstalkdJob.php
- Loading branch information