From 1580c0d3add99af2f8b2d3cde5ee00e2ac8df1dc Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Mon, 10 Nov 2025 11:41:50 +0100 Subject: [PATCH] Update app/Jobs/ScheduledTaskJob.php Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- app/Jobs/ScheduledTaskJob.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/Jobs/ScheduledTaskJob.php b/app/Jobs/ScheduledTaskJob.php index 95c3b0eaf..41a6ec8e2 100644 --- a/app/Jobs/ScheduledTaskJob.php +++ b/app/Jobs/ScheduledTaskJob.php @@ -164,9 +164,6 @@ public function handle(): void ]); // Only notify and throw on final failure - if ($this->attempts() >= $this->tries) { - $this->team?->notify(new TaskFailed($this->task, $e->getMessage())); - } // Re-throw to trigger Laravel's retry mechanism with backoff throw $e;