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;