Skip to content

Commit

Permalink
fix: Disable SRD Update
Browse files Browse the repository at this point in the history
  • Loading branch information
CalumTowers committed Sep 8, 2024
1 parent 3df400c commit b584501
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ protected function schedule(Schedule $schedule)
$schedule->command('networkdata:update-controllers')->everyMinute()
->graceTimeInMinutes(3)
->withoutOverlapping(5);
$schedule->command('srd:update')
->cron('0 1-7 * * *')
->doNotMonitor();
// $schedule->command('srd:update')
// ->cron('0 1-7 * * *')
// ->doNotMonitor();
$schedule->command('horizon:snapshot')->everyFiveMinutes()->doNotMonitor();
$schedule->command('plugin-events:clean')->everyTenMinutes()->doNotMonitor();
$schedule->command('metars:update')->everyMinute();
Expand Down

0 comments on commit b584501

Please sign in to comment.