Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aserstobitov committed May 27, 2024
1 parent d77c331 commit 1952baa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Request/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ public function incrementRetryCounter(): void

public function isRetryLimitReached(): bool
{
return $this->retryCounter == self::RETRY_LIMIT;
return $this->retryCounter >= self::RETRY_LIMIT;
}
}

0 comments on commit 1952baa

Please sign in to comment.