From 091359774615d58d49be00f9b81555f23ee205cf Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 25 May 2024 12:34:56 +0800 Subject: [PATCH] Laravel Vapor - New V2 command to do housekeeping at S3 Bucket --- app/Console/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 9a48071f..4eae7cb1 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -38,7 +38,7 @@ class Kernel extends ConsoleKernel ->withoutOverlapping(); $schedule->command('housekeeping-s3-files-command') - ->everyFiveMinutes() + ->dailyAt('01:00') ->withoutOverlapping(); //cief todo: disable commands to avoid unintentional interfering with production starts