From fadcefd7e31a4f4b5d822ea08d153500fd173aed Mon Sep 17 00:00:00 2001 From: "Harry (hjbdev)" Date: Sun, 30 Mar 2025 12:44:21 +0000 Subject: [PATCH] retries on waitForServerToConnect --- app/Jobs/Servers/WaitForServerToConnect.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Jobs/Servers/WaitForServerToConnect.php b/app/Jobs/Servers/WaitForServerToConnect.php index ff374c2..1bcdf44 100644 --- a/app/Jobs/Servers/WaitForServerToConnect.php +++ b/app/Jobs/Servers/WaitForServerToConnect.php @@ -13,6 +13,9 @@ class WaitForServerToConnect implements ShouldQueue, ShouldBeEncrypted { use Queueable; + public int $retryAfter = 15; + public int $tries = 40; + public function __construct( protected Server $server, protected string $rootPassword,