Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Mar 6, 2023
1 parent 343dc0f commit 48583f0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions singer_sdk/streams/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -599,19 +599,19 @@ def backoff_max_tries(self) -> int:
def backoff_jitter(self, value: float) -> float:
"""Amount of jitter to add.
For more inforamtion see
For more information see
https://github.com/litl/backoff/blob/master/backoff/_jitter.py
We chose to default to random_jitter instead of full_jitter as we keep
some level of default jitter to be "nice" to downstream apis
but it's still relatively close to the default value that's passed in
to make tap developers life easier.
We chose to default to ``random_jitter`` instead of ``full_jitter`` as we keep
some level of default jitter to be "nice" to downstream APIs but it's still
relatively close to the default value that's passed in to make tap developers'
life easier.
Args:
value: Base amount to wait in seconds
Returns:
Time in seconds to wait between the next request
Time in seconds to wait until the next request.
"""
return backoff.random_jitter(value)

Expand Down

0 comments on commit 48583f0

Please sign in to comment.