Skip to content

Commit

Permalink
Merge pull request #126 from rlaakkol/5xx-retry-output-bug
Browse files Browse the repository at this point in the history
Fix erroneous output on 5xx retry logic
  • Loading branch information
ross authored Feb 3, 2025
2 parents 468bf9a + c9f6cf7 commit f944a33
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 f944a33

Please sign in to comment.