Explorar el Código

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

Daniel Supernault hace 5 años
padre
commit
c40cdb6d8a
Se han modificado 1 ficheros con 1 adiciones y 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);
     }
 
     /**