diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index ed32fe32..353f70c5 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -31,12 +31,12 @@ class Kernel extends ConsoleKernel $schedule->command('backup:cronjob')->everyMinute()->withoutOverlapping(); $schedule->command('hr:update_status')->everyTenMinutes()->withoutOverlapping(); $schedule->command('hr:update_status --ignore_time=1')->hourly()->withoutOverlapping(); - $schedule->command('user:delete_expired_token')->dailyAt('04:00'); + $schedule->command('user:delete_expired_token')->dailyAt('04:00')->withoutOverlapping(); $schedule->command('claim:settle')->hourly()->when(function () { return Carbon::now()->format('d') == '01'; })->withoutOverlapping(); $schedule->command('meilisearch:import')->weeklyOn(1, "03:00")->withoutOverlapping(); - + $schedule->command('torrent:load_pieces_hash')->dailyAt("01:00")->withoutOverlapping(); } /** diff --git a/include/constants.php b/include/constants.php index 684306fd..40757013 100644 --- a/include/constants.php +++ b/include/constants.php @@ -1,6 +1,6 @@