Skip to content

Commit 2a231cb

Browse files
Update backup schedule time to 17:30 and restore reminder/holidays commands
1 parent 81bdb7e commit 2a231cb

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

routes/console.php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22

33
use Illuminate\Support\Facades\Schedule;
44

5-
Schedule::command('reminder:send')->hourly()
6-
->sentryMonitor();
7-
Schedule::command('holidays:sync')->daily()
8-
->sentryMonitor();
95
if (config('app.auto_update')) {
106
Schedule::command('simpede:update')->dailyAt('01:00')
117
->withoutOverlapping()
@@ -15,10 +11,15 @@
1511
}
1612
Schedule::command('db:optimize')->monthlyOn(1, '02:00')
1713
->withoutOverlapping()
14+
->runInBackground()
1815
->timezone(config('app.schedule_timezone'))
1916
->sentryMonitor();
20-
Schedule::command('simpede:backup')->dailyAt('17:30')
17+
Schedule::command('simpede:backup')->dailyAt('18:00')
2118
->withoutOverlapping()
2219
->runInBackground()
2320
->timezone(config('app.schedule_timezone'))
2421
->sentryMonitor();
22+
Schedule::command('reminder:send')->hourly()
23+
->sentryMonitor();
24+
Schedule::command('holidays:sync')->daily()
25+
->sentryMonitor();

0 commit comments

Comments
 (0)