diff options
| author | horus | 2020-07-26 19:51:05 +0200 |
|---|---|---|
| committer | horus | 2020-07-26 19:51:05 +0200 |
| commit | 04f8179f580b507d14039e9696d33744a064d577 (patch) | |
| tree | 6e8d610e4aee24f8b6bc7a124aa83035c6101131 /app | |
| parent | 3c9c0a1668c6b5d643e71880b0e389c7bcf084e2 (diff) | |
| download | senpai-04f8179f580b507d14039e9696d33744a064d577.tar.gz | |
Fix scheduling.
Diffstat (limited to 'app')
| -rw-r--r-- | app/Console/Kernel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 6f99217..8582678 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -36,7 +36,7 @@ class Kernel extends ConsoleKernel $schedule->call( function(){ $background = new Background(); $background->saveAnimeStats(); - })->everyThirtyMinutes()->name('saveStats')->withoutOverlapping(2); + })->everyThirtyMinutes()->name('saveStats')->withoutOverlapping(); #})->everyMinute(); $schedule->call( function(){ |
