Merge pull request #1727 from lxix/fix-scheduled-tasks

fix: Scheduled Tasks won't execute after deleting resource with scheduled task
This commit is contained in:
Andras Bacsai
2024-02-14 15:02:09 +01:00
committed by GitHub

View File

@@ -120,8 +120,8 @@ class Kernel extends ConsoleKernel
return;
}
foreach ($scheduled_tasks as $scheduled_task) {
$service = $scheduled_task->service()->get();
$application = $scheduled_task->application()->get();
$service = $scheduled_task->service()->first();
$application = $scheduled_task->application()->first();
if (!$application && !$service) {
ray('application/service attached to scheduled task does not exist');