This commit is contained in:
2019-07-05 02:04:12 -05:00
parent 5222413c57
commit 366e293e9f
2 changed files with 4 additions and 1 deletions

View File

@@ -52,6 +52,9 @@ class Kernel extends ConsoleKernel
$schedule->command('services:GetStructures')
->daily()
->withoutOverlapping();
$schedule->command('services:GetAssets')
->hourly()
->withoutOverlapping();
$schedule->command('services:CleanData')
->monthlyOn(1, '18:00');

View File

@@ -102,6 +102,6 @@ class ProcessAssetsJob implements ShouldQueue
}
//Purge Stale Data
//$aHelper->PurgeStaleData();
$aHelper->PurgeStaleData();
}
}