From 12d6b0bf57a4445b52b8fe4b08b3cdb0f0aa9100 Mon Sep 17 00:00:00 2001 From: Peter Papp Date: Tue, 13 Oct 2020 17:09:05 +0200 Subject: [PATCH] scheduler changed from hourly to every minute --- app/Console/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index aa02c306..46dcb0b5 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -34,7 +34,7 @@ class Kernel extends ConsoleKernel { $schedule->call(function () { $this->delete_expired_shared_links(); - })->hourly(); + })->everyMinute(); } /**