Skip to content

Commit

Permalink
Remove tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
velp committed Feb 28, 2025
1 parent beae816 commit e2a3326
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions octavia_f5/utils/cert_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(self):

@tenacity.retry(
retry=tenacity.retry_if_exception_type(
(octavia_exc.CertificateRetrievalException)),
octavia_exc.CertificateRetrievalException),
wait=tenacity.wait_incrementing(
RETRY_INITIAL_DELAY, RETRY_BACKOFF, RETRY_MAX),
stop=tenacity.stop_after_attempt(RETRY_ATTEMPTS))
Expand Down Expand Up @@ -82,7 +82,7 @@ def get_certificates(self, obj, context=None):

@tenacity.retry(
retry=tenacity.retry_if_exception_type(
(octavia_exc.CertificateRetrievalException)),
octavia_exc.CertificateRetrievalException),
wait=tenacity.wait_incrementing(
RETRY_INITIAL_DELAY, RETRY_BACKOFF, RETRY_MAX),
stop=tenacity.stop_after_attempt(RETRY_ATTEMPTS))
Expand Down

0 comments on commit e2a3326

Please sign in to comment.