From 49aab1b97a7826136cdcc68bdbce295c6139d393 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Mon, 29 Mar 2021 01:28:10 +0900 Subject: [PATCH] removed some overlapping stuff from console command schedule --- app/Console/Kernel.php | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index e90fe14f9..632ef473e 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -53,8 +53,7 @@ class Kernel extends ConsoleKernel * Purge Data Schedule */ $schedule->command('data:CleanData') - ->weekly(7, '11:00') - ->withoutOverlapping(); + ->weekly(7, '11:00'); $schedule->command('data:PurgeCorpLedgers') ->monthly(); $schedule->command('data:PurgeUsers') @@ -71,24 +70,19 @@ class Kernel extends ConsoleKernel * Item Update Schedule */ $schedule->command('services:ItemPriceUpdate') - ->hourlyAt('30') - ->withoutOverlapping(); + ->hourlyAt('30'); /** * Mining Tax Schedule */ //$schedule->command('MiningTax:Observers') - // ->dailyAt('22:00') - // ->withoutOverlapping(); + // ->dailyAt('22:00'); $schedule->command('MiningTax:Ledgers') - ->dailyAt('20:00') - ->withoutOverlapping(); + ->dailyAt('20:00'); $schedule->command('MiningTax:Invoices') - ->weeklyOn(1, '8:00') - ->withoutOverlapping(); + ->weeklyOn(1, '8:00'); $schedule->command('MiningTax:Payments') - ->hourlyAt('15') - ->withoutOverlapping(); + ->hourlyAt('15'); } /**