We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee79b68 commit 6df1d63Copy full SHA for 6df1d63
1 file changed
src/Transport/JsonRpcClient.php
@@ -290,6 +290,7 @@ protected function sendRequest(array $payload, int $attempt = 1): array
290
if ($errorCode === 1004) {
291
if ($attempt < self::MAX_RETRIES) {
292
sleep($attempt); // 1s, 2s backoff
293
+
294
return $this->sendRequest($payload, $attempt + 1);
295
}
296
0 commit comments