We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04a055a commit 81d9b99Copy full SHA for 81d9b99
src/Core/BaseClient.php
@@ -271,7 +271,7 @@ protected function sendRequest(
271
throw $exn;
272
}
273
274
- $seconds = $this->retryDelay($opts, retryCount: $redirectCount, rsp: $rsp);
+ $seconds = $this->retryDelay($opts, retryCount: $retryCount, rsp: $rsp);
275
$floor = floor($seconds);
276
time_nanosleep((int) $floor, nanoseconds: (int) ($seconds - $floor) * 10 ** 9);
277
0 commit comments