Skip to content

Commit

Permalink
Adjust default value for retry max delay config (#151)
Browse files Browse the repository at this point in the history
Signed-off-by: Max Lambrecht <[email protected]>
  • Loading branch information
maxlambrecht authored Mar 24, 2024
1 parent 1d7d5d7 commit 7e78ee1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spiffe/src/spiffe/workloadapi/workload_api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __init__(
max_retries: int = UNLIMITED_RETRIES,
base_backoff_in_seconds: float = 0.1,
backoff_factor: int = 2,
max_delay_in_seconds: float = 60,
max_delay_in_seconds: float = 5,
) -> None:
"""Creates a RetryHandler that keeps track of retries and allows the execution of a callable using an
exponential backoff policy.
Expand Down

0 comments on commit 7e78ee1

Please sign in to comment.