Skip to content

Commit 2d7b31d

Browse files
committed
fix: update daily update command time to 1:00 and remove runInBackground from scheduled commands
1 parent 78ed4cb commit 2d7b31d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

routes/console.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,15 @@
44

55
Schedule::command('reminder:send')->hourly()
66
->withoutOverlapping()
7-
->runInBackground()
87
->sentryMonitor();
98
Schedule::command('action-events:clear')->daily()
109
->withoutOverlapping()
11-
->runInBackground()
1210
->sentryMonitor();
1311
Schedule::command('holidays:sync')->daily()
1412
->withoutOverlapping()
15-
->runInBackground()
1613
->sentryMonitor();
1714
if (config('app.auto_update')) {
18-
Schedule::command('simpede:update')->dailyAt('0:30')
15+
Schedule::command('simpede:update')->dailyAt('1:00')
1916
->withoutOverlapping()
2017
->runInBackground()
2118
->timezone(config('app.schedule_timezone'))

0 commit comments

Comments
 (0)