Skip to content

Commit

Permalink
fix infinite loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory Duchatelet committed Feb 19, 2019
1 parent 4f0d264 commit 0ea0588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RetryStrategy/RetryStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ trait RetryStrategy
{
private $retryLimit;

public function __construct($retryLimit = INF)
public function __construct($retryLimit = 8)
{
$this->retryLimit = $retryLimit;
}
Expand Down

0 comments on commit 0ea0588

Please sign in to comment.