Skip to content

Commit 28ca08c

Browse files
committed
update retry plugin backoff default to be more sensible
1 parent 600ea9a commit 28ca08c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Plugin/RetryPlugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,6 @@ public function handleRequest(RequestInterface $request, callable $next, callabl
117117
*/
118118
public static function defaultDelay(RequestInterface $request, Exception $e, $retries)
119119
{
120-
return pow(2, $retries) * 1000;
120+
return pow(2, $retries) * 1000 * 100;
121121
}
122122
}

0 commit comments

Comments
 (0)