Skip to content

Commit f944a33

Browse files
authored
Merge pull request #126 from rlaakkol/5xx-retry-output-bug
Fix erroneous output on 5xx retry logic
2 parents 468bf9a + c9f6cf7 commit f944a33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

octodns_cloudflare/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def _try_request(self, *args, **kwargs):
181181
'http 502 error encountered, pausing '
182182
'for %ds and trying again, %d remaining',
183183
self.retry_period,
184-
auth_tries,
184+
tries,
185185
)
186186
sleep(self.retry_period)
187187

0 commit comments

Comments
 (0)