diff --git a/src/TaskHandler.php b/src/TaskHandler.php index b47f61d..2e31145 100644 --- a/src/TaskHandler.php +++ b/src/TaskHandler.php @@ -41,7 +41,7 @@ public function handle(?string $task = null): void // is returned. Because we manually manage retries by releaseing jobs, // we never want to return a 5xx status as that will result in duplicate // job attempts. - rescue(fn () => $this->run($task), report: false); + rescue(fn () => $this->run($task)); } private function run(IncomingTask $task): void