Prune server backups from the DB after 30 minutes if they still have not completed

This commit is contained in:
Dane Everitt 2020-08-20 20:48:08 -07:00
parent f144ba8394
commit 6066fa40f4
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 56 additions and 0 deletions

View file

@ -22,7 +22,16 @@ class Kernel extends ConsoleKernel
*/
protected function schedule(Schedule $schedule)
{
// Execute scheduled commands for servers every minute, as if there was a normal cron running.
$schedule->command('p:schedule:process')->everyMinute()->withoutOverlapping();
// Every 30 minutes, run the backup pruning command so that any abandoned backups can be removed
// from the UI view for the server.
$schedule->command('p:maintenance:prune-backups', [
'--since-minutes' => '30',
])->everyThirtyMinutes();
// Every day cleanup any internal backups of service files.
$schedule->command('p:maintenance:clean-service-backups')->daily();
}
}