Skip to content
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

[10.x] Throw timeoutException instead of maxAttemptsExceededException when a job times out #46968

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/Illuminate/Queue/TimeoutExceededException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

namespace Illuminate\Queue;

class TimeoutExceededException extends MaxAttemptsExceededException
{
//
}
17 changes: 15 additions & 2 deletions src/Illuminate/Queue/Worker.php
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ protected function registerTimeoutHandler($job, WorkerOptions $options)
pcntl_signal(SIGALRM, function () use ($job, $options) {
if ($job) {
$this->markJobAsFailedIfWillExceedMaxAttempts(
$job->getConnectionName(), $job, (int) $options->maxTries, $e = $this->maxAttemptsExceededException($job)
$job->getConnectionName(), $job, (int) $options->maxTries, $e = $this->timoutExceededException($job)
);

$this->markJobAsFailedIfWillExceedMaxExceptions(
Expand Down Expand Up @@ -778,7 +778,20 @@ public function kill($status = 0, $options = null)
protected function maxAttemptsExceededException($job)
{
return new MaxAttemptsExceededException(
$job->resolveName().' has been attempted too many times or run too long. The job may have previously timed out.'
$job->resolveName().' has been attempted too many times.'
);
}

/**
* Create an instance of TimeoutExceededException.
*
* @param \Illuminate\Contracts\Queue\Job $job
* @return \Illuminate\Queue\TimeoutExceededException
*/
protected function timoutExceededException($job)
{
return new TimeoutExceededException(
$job->resolveName().' has timed out.'
);
}

Expand Down