From c5de1a25c35bfa96ab3b4eed89b67b504e84ace2 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 6 Aug 2024 09:45:48 +0200 Subject: [PATCH] refactor: Remove unnecessary debug statement in ServerCheckJob --- app/Jobs/ServerCheckJob.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Jobs/ServerCheckJob.php b/app/Jobs/ServerCheckJob.php index d78642a3f..88caaacc4 100644 --- a/app/Jobs/ServerCheckJob.php +++ b/app/Jobs/ServerCheckJob.php @@ -72,7 +72,6 @@ class ServerCheckJob implements ShouldBeEncrypted, ShouldQueue return 'Server is not ready.'; } if (! $this->server->isSwarmWorker() && ! $this->server->isBuildServer()) { - ray('Server is not a worker or build server.'); ['containers' => $this->containers, 'containerReplicates' => $containerReplicates] = $this->server->getContainers(); if (is_null($this->containers)) { return 'No containers found.';