Browse Source

Merge pull request #493 from github/dependabot/pip/botocore-1.15.0

Bump botocore from 1.14.13 to 1.15.0
pull/494/head
Ross McFarland 6 years ago
committed by GitHub
parent
commit
b88300665d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions
  1. +1
    -1
      requirements.txt
  2. +4
    -2
      tests/test_octodns_provider_route53.py

+ 1
- 1
requirements.txt View File

@ -2,7 +2,7 @@ PyYaml==5.3
azure-common==1.1.24
azure-mgmt-dns==3.0.0
boto3==1.12.0
botocore==1.14.13
botocore==1.15.0
dnspython==1.16.0
docutils==0.16
dyn==1.8.1


+ 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