Explorar o código

Update FailedJobGC command, change scheduled time to not conflict with daily backups

Daniel Supernault %!s(int64=5) %!d(string=hai) anos
pai
achega
c40cdb6d8a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      app/Console/Kernel.php

+ 1 - 1
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);
     }
 
     /**