Browse Source

Yet another round of Route53 retry internals changing

pull/493/head
Ross McFarland 6 years ago
parent
commit
413ddef2a6
No known key found for this signature in database GPG Key ID: 61C10C4FC8FE4A89
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      tests/test_octodns_provider_route53.py

+ 4
- 2
tests/test_octodns_provider_route53.py View File

@ -2026,8 +2026,10 @@ class TestRoute53Provider(TestCase):
provider = Route53Provider('test', 'abc', '123',
client_max_attempts=42)
# NOTE: this will break if boto ever changes the impl details...
self.assertEquals(42, provider._conn._client_config
.retries['max_attempts'])
self.assertEquals({
'mode': 'legacy',
'total_max_attempts': 43,
}, provider._conn._client_config.retries)
def test_data_for_dynamic(self):
provider = Route53Provider('test', 'abc', '123')


Loading…
Cancel
Save