From 145089f6349fc7a7fdc6264a227c45e140afdf0a Mon Sep 17 00:00:00 2001 From: Harry Bayliss Date: Thu, 22 May 2025 17:20:24 +0100 Subject: [PATCH] lower tiemr --- app/Jobs/Servers/WaitForServerToConnect.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/Servers/WaitForServerToConnect.php b/app/Jobs/Servers/WaitForServerToConnect.php index 8d9d6c8..7c000ab 100644 --- a/app/Jobs/Servers/WaitForServerToConnect.php +++ b/app/Jobs/Servers/WaitForServerToConnect.php @@ -30,7 +30,7 @@ class WaitForServerToConnect implements ShouldBeEncrypted, ShouldQueue $process = Ssh::create('root', $this->server->ipv4 ?? $this->server->ipv6) ->usePassword($this->rootPassword) ->disableStrictHostKeyChecking() - ->setTimeout(10) + ->setTimeout(5) ->execute('echo "Connected"'); if (! $process->isSuccessful()) {