From c40cdb6d8a500399f84ca3613fac7d93f8779002 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Tue, 28 Jan 2020 23:18:12 -0700 Subject: [PATCH] Update FailedJobGC command, change scheduled time to not conflict with daily backups --- app/Console/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 046890e7a..7044d8f60 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -31,7 +31,7 @@ class Kernel extends ConsoleKernel ->hourly(); $schedule->command('horizon:snapshot')->everyFiveMinutes(); $schedule->command('story:gc')->everyFiveMinutes(); - $schedule->command('gc:failedjobs')->daily(); + $schedule->command('gc:failedjobs')->dailyAt(3); } /**