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

[5.5] Job Expiration #20776

Merged
merged 5 commits into from
Aug 27, 2017
Merged

[5.5] Job Expiration #20776

merged 5 commits into from
Aug 27, 2017

Conversation

themsaid
Copy link
Member

@themsaid themsaid commented Aug 26, 2017

This PR gives the ability to define an expiration time for a job so it fails after all retries fail during this time:

class TestJob implements ShouldQueue
{
    use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;

    public function handle()
    {
        //...
    }

    public function retryUntil()
    {
        return now()->addSeconds(10);
    }
}

@taylorotwell taylorotwell merged commit 299af5b into laravel:master Aug 27, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants