From b5d9d6e268aa00fa2a109fa7fcde5cd4aed4cae8 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 10 May 2024 09:12:19 +0200 Subject: [PATCH] chore: Comment out server sentinel check in ServerStatusJob --- app/Jobs/ServerStatusJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/ServerStatusJob.php b/app/Jobs/ServerStatusJob.php index 0a9198d00..4ec28328f 100644 --- a/app/Jobs/ServerStatusJob.php +++ b/app/Jobs/ServerStatusJob.php @@ -44,7 +44,7 @@ class ServerStatusJob implements ShouldQueue, ShouldBeEncrypted if ($this->server->isFunctional()) { $this->cleanup(notify: false); $this->removeCoolifyYaml(); - $this->server->checkSentinel(); + // $this->server->checkSentinel(); } } catch (\Throwable $e) { send_internal_notification('ServerStatusJob failed with: ' . $e->getMessage());