From 2458402c531c3b5769aa90841f8e859de202d000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Jodas?= Date: Thu, 28 Aug 2025 15:41:15 +0200 Subject: [PATCH] increased DEFAULT_MAX_WAIT_SECONDS (90s) --- src/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index 1e5a7a9..633460b 100644 --- a/src/Client.php +++ b/src/Client.php @@ -22,7 +22,7 @@ class Client private const int DEFAULT_BACKOFF_RETRIES = 3; private const int GUZZLE_CONNECT_TIMEOUT_SECONDS = 10; private const int GUZZLE_TIMEOUT_SECONDS = 120; - private const int DEFAULT_MAX_WAIT_SECONDS = 30; + private const int DEFAULT_MAX_WAIT_SECONDS = 90; private string $apiUrl; private string $tokenString;