diff --git a/app/Models/Server.php b/app/Models/Server.php index aa709bf6b..902433530 100644 --- a/app/Models/Server.php +++ b/app/Models/Server.php @@ -1026,29 +1026,18 @@ $schema://$host { $unreachableNotificationSent = (bool) $this->unreachable_notification_sent; $isReachable = (bool) $this->settings->is_reachable; - ray('Server Reachability Check', [ - 'server_id' => $this->id, - 'unreachable_notification_sent' => $unreachableNotificationSent, - 'is_reachable' => $isReachable, - 'unreachable_count' => $this->unreachable_count, - ]); - if ($isReachable === true) { - ray('Server is reachable - resetting counts'); $this->unreachable_count = 0; $this->save(); if ($unreachableNotificationSent === true) { - ray('Sending reachable notification'); $this->sendReachableNotification(); } return; } - ray('Server is not reachable - incrementing count'); $this->increment('unreachable_count'); - ray('Unreachable count: '.$this->unreachable_count); if ($this->unreachable_count === 1) { $this->settings->is_reachable = true; $this->settings->save(); @@ -1057,27 +1046,16 @@ $schema://$host { } if ($this->unreachable_count >= 2 && ! $unreachableNotificationSent) { - ray('Starting additional checks', [ - 'unreachable_count' => $this->unreachable_count, - ]); $failedChecks = 0; for ($i = 0; $i < 3; $i++) { $status = $this->status(); sleep(5); - ray('Check attempt '.($i + 1), ['status' => $status]); if (! $status) { $failedChecks++; - } } - ray('Additional checks complete', [ - 'failed_checks' => $failedChecks, - 'will_send_notification' => ($failedChecks === 3 && ! $unreachableNotificationSent), - ]); - if ($failedChecks === 3 && ! $unreachableNotificationSent) { - ray('Sending unreachable notification'); $this->sendUnreachableNotification(); } }