- add cron rejecting dataset

- add cron job for deleting log file daily
 - change cron job for deleting expired cache files (without logging)
This commit is contained in:
Arno Kaimbacher 2020-05-13 16:42:22 +02:00
parent e89df8ec2a
commit f26f3f0919
2 changed files with 53 additions and 4 deletions

View file

@ -15,6 +15,7 @@ class Kernel extends ConsoleKernel
'App\Console\Commands\Inspire',
'App\Console\Commands\DatasetState',
'App\Console\Commands\SolrIndexBuilder',
'App\Console\Commands\Log\ClearLogFile'
];
/**
@ -30,12 +31,17 @@ class Kernel extends ConsoleKernel
// ->withoutOverlapping()
// ->appendOutputTo(storage_path('logs/inspire.log'));
// $schedule->command('state:dataset');
// // ->appendOutputTo(storage_path('logs/inspire.log'));
$schedule->command('log:clear')
->daily()
->withoutOverlapping();
$schedule->command('state:dataset')
->daily()
->withoutOverlapping();
$schedule->command('cache:clear-expired')
->twiceDaily(1, 16)
->appendOutputTo(storage_path('logs/cacheClear.log'));
->twiceDaily(1, 16);
//->appendOutputTo(storage_path('logs/cacheClear.log'));
}
/**