From 176dd172b8be6d2fccdb73d04895a0f4ac931a3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=9D=99?= Date: Thu, 20 Jan 2022 19:02:23 +0800 Subject: [PATCH] Update --- app/Console/Kernel.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index da6a09a1..eaac9232 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -25,13 +25,16 @@ class Kernel extends ConsoleKernel protected function schedule(Schedule $schedule) { $schedule->command('dealer:manage-subsidy-settle') - ->twiceMonthly(5, 20, '2:00'); + ->twiceMonthly(5, 20, '2:00') + ->runInBackground(); $schedule->command('dealer:purchase-subsidy-settle') - ->twiceMonthly(5, 20, '3:00'); + ->twiceMonthly(5, 20, '3:00') + ->runInBackground(); $schedule->command('dealer:manager-subsidy-settle') - ->monthlyOn(1, '3:00'); + ->monthlyOn(1, '3:00') + ->runInBackground(); } /**