Closed robert-abram closed 2 years ago
Helo, How to manual fail or release job. Using laravel job, we can use in handle method
$this->fail(); or $this->release();
https://laravel.com/docs/8.x/queues#manually-releasing-a-job
Try this:
class ExampleJobThatAlwaysFails { use AsAction; public function asJob(JobDecorator $job) { $job->fail(); // or $job->release(); } }
Helo, How to manual fail or release job. Using laravel job, we can use in handle method
https://laravel.com/docs/8.x/queues#manually-releasing-a-job