From 6455a33db175c3631cf2ce96f463c6c87e6359ed Mon Sep 17 00:00:00 2001 From: peterbakker Date: Thu, 19 Mar 2020 19:41:20 +0100 Subject: [PATCH] changed backoff factor for DNS validation --- src/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index 85c39b7..55bfb3b 100644 --- a/src/Client.php +++ b/src/Client.php @@ -441,7 +441,7 @@ class Client } } } - sleep(ceil(30 / $maxAttempts)); + sleep(ceil(45 / $maxAttempts)); $maxAttempts--; } while ($maxAttempts > 0);