Skip to content

Commit

Permalink
Remove timeoutAt fallback from Job base class. The field was removed …
Browse files Browse the repository at this point in the history
…over 2 years ago in 1e9a2ea and is no longer referenced anywhere else. (#43749)
  • Loading branch information
robinkunde authored Aug 18, 2022
1 parent 365bb3b commit 94b3c45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Queue/Jobs/Job.php
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ public function timeout()
*/
public function retryUntil()
{
return $this->payload()['retryUntil'] ?? $this->payload()['timeoutAt'] ?? null;
return $this->payload()['retryUntil'] ?? null;
}

/**
Expand Down

0 comments on commit 94b3c45

Please sign in to comment.