同步订单改每天同步

This commit is contained in:
邓皓元 2018-12-26 14:09:47 +08:00
parent 1ec7f6a6fd
commit 325f1a2bb0

View File

@ -28,7 +28,7 @@ class Kernel extends ConsoleKernel
$logPath = storage_path('logs/artisan.log');
$schedule->command('real:sync-mongo')->cron('* * * * *')->withoutOverlapping()->appendOutputTo($logPath);
$schedule->command('virtual:sync-card')->cron('* * * * *')->withoutOverlapping()->appendOutputTo($logPath);
$schedule->command('virtual:sync-log')->cron('* * * * *')->withoutOverlapping()->appendOutputTo($logPath);
$schedule->command('virtual:sync-log')->cron('* * 1 * *')->withoutOverlapping()->appendOutputTo($logPath);
}
/**