Merge pull request #6147 from coollabsio/next
fix(scheduling): change redis cleanup command frequency from hourly to weekly for better resource management
This commit is contained in:
commit
3df721909b
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ protected function schedule(Schedule $schedule): void
|
||||||
}
|
}
|
||||||
|
|
||||||
// $this->scheduleInstance->job(new CleanupStaleMultiplexedConnections)->hourly();
|
// $this->scheduleInstance->job(new CleanupStaleMultiplexedConnections)->hourly();
|
||||||
$this->scheduleInstance->command('cleanup:redis')->hourly();
|
$this->scheduleInstance->command('cleanup:redis')->weekly();
|
||||||
|
|
||||||
if (isDev()) {
|
if (isDev()) {
|
||||||
// Instance Jobs
|
// Instance Jobs
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue