-
Notifications
You must be signed in to change notification settings - Fork 11.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
queue:retry is broken after recent commit #35825
Comments
I guess this is fixed by this commit: 4415b94 But it still needs to be tagged. |
@rodrigopedra no it's not. The |
I see now, thanks for the heads up. |
Thanks for the report. I've sent in a fix here: #35828 |
Description:
A recent pull on the framework has broken the
php artisan queue:retry
. I submitted a comment on the commit but decided to create this issue since this is reproducible.Steps To Reproduce:
composer create-project laravel/laravel test
.env
is using database as the queue driver:app/Notifications/TestNotification.php
)Reasoning:
As per my comment on the commit, the
retryUntil()
method in the classSendQueuedNotifications
does not always return a Carbon object as expected in the RetryCommand. Suggest a fix is to check also if theretryUntil()
is returning a Carbon object before accessing thetimestamp
field.The text was updated successfully, but these errors were encountered: