Skip to content

Commit

Permalink
remove registerScheduleCleanup() debug
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaomlove committed Mar 22, 2024
1 parent 287302d commit 66a32b2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ private function registerScheduleCleanup(Schedule $schedule): void
if (!$interval || $interval < 60) {
$interval = 7200;
}
$interval = 60;
$schedule->job(new CheckCleanup())
->cron(sprintf("*/%d * * * *", intval($interval/60)))
->withoutOverlapping();
Expand Down

0 comments on commit 66a32b2

Please sign in to comment.