From 4c6362db0e3a073e7ac22d1067a53d2db19b5455 Mon Sep 17 00:00:00 2001 From: Nathan Curtis Date: Fri, 7 Jun 2024 13:22:06 -0700 Subject: [PATCH] [TM-970] Stop trying to call a script that doesn't exist. --- app/Console/Kernel.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 8752549dc..5eda2acca 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -52,7 +52,6 @@ protected function schedule(Schedule $schedule) $schedule->command('generate-application-export')->twiceDaily(13, 20); $schedule->command('generate-admin-all-entity-records-export')->twiceDaily(13, 20); - $schedule->command('populate-v2-temporary-sites')->hourly(); } protected function commands()