From 93a9c88a874fe84f654641ee38d7e59a77171355 Mon Sep 17 00:00:00 2001 From: Sebastian De Deyne Date: Mon, 18 Dec 2023 09:05:32 +0100 Subject: [PATCH] Hourly Fathom call --- 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 8556c61f..69994e9c 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -32,7 +32,7 @@ protected function schedule(Schedule $schedule): void $schedule->command(FetchGitHubTotalsCommand::class)->everyThirtyMinutes(); $schedule->command(FetchPackagistTotalsCommand::class)->hourly(); $schedule->command(FetchVeloStationsCommand::class)->everyMinute(); - $schedule->command(FetchFathomStatistics::class)->everyMinute(); + $schedule->command(FetchFathomStatistics::class)->hourly(); } public function commands(): void