do not send notification of scheduled task failed

This commit is contained in:
Andras Bacsai 2024-01-12 12:44:08 +01:00
parent 408738e08d
commit f1298d1db4

View File

@ -108,7 +108,7 @@ class ScheduledTaskJob implements ShouldQueue
'message' => $this->task_output ?? $e->getMessage(),
]);
}
send_internal_notification('ScheduledTaskJob failed with: ' . $e->getMessage());
// send_internal_notification('ScheduledTaskJob failed with: ' . $e->getMessage());
throw $e;
}
}