Skip to content

Commit

Permalink
Fix erroneous output on 5xx retry logic
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaakkol committed Feb 3, 2025
1 parent 468bf9a commit c9f6cf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octodns_cloudflare/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def _try_request(self, *args, **kwargs):
'http 502 error encountered, pausing '
'for %ds and trying again, %d remaining',
self.retry_period,
auth_tries,
tries,
)
sleep(self.retry_period)

Expand Down

0 comments on commit c9f6cf7

Please sign in to comment.