Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct typo in comments for retriable method #794

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/http/chainable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -258,13 +258,13 @@ def use(*features)
# HTTP.retriable.get(url)
#
# # Retry max 3 times with randomly growing delay between retries
# HTTP.retriable(times: 3).get(url)
# HTTP.retriable(tries: 3).get(url)
#
# # Retry max 3 times with 1 sec delay between retries
# HTTP.retriable(times: 3, delay: proc { 1 }).get(url)
# HTTP.retriable(tries: 3, delay: proc { 1 }).get(url)
#
# # Retry max 3 times with geometrically progressed delay between retries
# HTTP.retriable(times: 3, delay: proc { |i| 1 + i*i }).get(url)
# HTTP.retriable(tries: 3, delay: proc { |i| 1 + i*i }).get(url)
#
# @param (see Performer#initialize)
def retriable(**options)
Expand Down
Loading