Skip to content

Commit

Permalink
fix wrong condition disabling autoscaler
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiritin committed Aug 31, 2023
1 parent a3ed055 commit c95ec79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Jobs/Server/ScalingJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function handle(): void
return;
}

if ($cacheStatus !== StreamStatusEnum::OFFLINE) {
if ($cacheStatus === StreamStatusEnum::OFFLINE) {
return;
}

Expand Down

0 comments on commit c95ec79

Please sign in to comment.