From c39abfd16caf73162c504b5c497d9b94e7ba1c96 Mon Sep 17 00:00:00 2001 From: denghy Date: Thu, 24 Jan 2019 16:38:53 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=B3=E9=97=AD=E4=B8=A4=E4=B8=AA=E5=90=8C?= =?UTF-8?q?=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Console/Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index c6349e9a..f3330b8e 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -26,9 +26,9 @@ class Kernel extends ConsoleKernel protected function schedule(Schedule $schedule) { $logPath = storage_path('logs/artisan.log'); - $schedule->command('real:sync-mongo')->cron('* * * * *')->withoutOverlapping()->appendOutputTo($logPath); + // $schedule->command('real:sync-mongo')->cron('* * * * *')->withoutOverlapping()->appendOutputTo($logPath); $schedule->command('virtual:sync-card')->cron('* * * * *')->withoutOverlapping()->appendOutputTo($logPath); - $schedule->command('virtual:sync-log')->cron('* * 1 * *')->withoutOverlapping()->appendOutputTo($logPath); + // $schedule->command('virtual:sync-log')->cron('* * 1 * *')->withoutOverlapping()->appendOutputTo($logPath); } /**