From f14995200bf471a19e1b6d747b31815356f6a30f Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 9 Oct 2023 12:41:21 +0200 Subject: [PATCH] fix: do not reset unreachable count --- app/Jobs/ContainerStatusJob.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/Jobs/ContainerStatusJob.php b/app/Jobs/ContainerStatusJob.php index 8ea4eb6e7..4f104f2ea 100644 --- a/app/Jobs/ContainerStatusJob.php +++ b/app/Jobs/ContainerStatusJob.php @@ -59,9 +59,6 @@ class ContainerStatusJob implements ShouldQueue, ShouldBeEncrypted $this->server->settings()->update([ 'is_reachable' => false, ]); - $this->server->update([ - 'unreachable_count' => 0, - ]); return; } $result = $this->server->validateConnection();