-
Notifications
You must be signed in to change notification settings - Fork 656
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
[Question] Where should I put timeout? #97
Comments
The 90 seconds comes from |
Did you figure this out? |
You should add |
Should I also set retry_after more that 300 second or not? |
How can I set configuration per job ?? |
I'm using
public $timeout = 3600
inside my job andtries => 1
in horizon.php and I gotIlluminate\Queue\MaxAttemptsExceededException: A queued job has been attempted too many times. The job may have previously timed out.
.The job runs one time until finish like how I want and the process it's not killed. Weird!
With
tries => 0
my output isThe job runs four times. 😢
My job fails every 90 seconds even I use
public $timeout = 3600
inside job or'timeout' => 3600
in horizon.php.The text was updated successfully, but these errors were encountered: