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,