From dfe833d67051a075d537cc3056069decaa8ce0ef Mon Sep 17 00:00:00 2001 From: Axel <1597611+axeloz@users.noreply.github.com> Date: Mon, 20 Dec 2021 13:02:06 +0100 Subject: [PATCH] changing frequency --- 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 c879242..481cda8 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -30,7 +30,7 @@ class Kernel extends ConsoleKernel * You may safely remove this scheduled task */ if (env('CMS_ENABLE_SYNC') == true) { - $schedule->command('customers:sync')->everyMinute(); + $schedule->command('customers:sync')->hourly(); } } }