1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Yet another round of Route53 retry internals changing

This commit is contained in:
Ross McFarland
2020-02-18 15:26:10 -08:00
parent 3777f131fb
commit 413ddef2a6

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')