Skip to content

Commit 6df1d63

Browse files
committed
style: Add blank line before return in burst throttle retry
1 parent ee79b68 commit 6df1d63

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/Transport/JsonRpcClient.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ protected function sendRequest(array $payload, int $attempt = 1): array
290290
if ($errorCode === 1004) {
291291
if ($attempt < self::MAX_RETRIES) {
292292
sleep($attempt); // 1s, 2s backoff
293+
293294
return $this->sendRequest($payload, $attempt + 1);
294295
}
295296

0 commit comments

Comments
 (0)