aws-sdk-core 3.111.0 → 3.111.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/aws-sdk-core/plugins/retry_errors.rb +4 -3
- data/lib/aws-sdk-sso.rb +1 -1
- data/lib/aws-sdk-sso/client.rb +1 -1
- data/lib/aws-sdk-sts.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c6fb1296bf2644c63bfe07b03343b2a2cce7532d320af8e32362f72ee8a40cb
|
|
4
|
+
data.tar.gz: '084be36043cfa4deb41c34de6d614bbacdb83e37ee71c56ca1588a3b5ea361b3'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ca95c4611235ec3c649caa1a3104f129e4c8303b4ae7fb9061ad6e3a2a5df443549ba2bad0b8ccbcf35baaac3c8ecd1281600cac289d7c9855117a9c64d931d
|
|
7
|
+
data.tar.gz: 933b95974041c21f3278dad0da9cf56ba7a2df678565355024189cc2b2e9d1c12f525653b93727b30b098a35b4755af3ffd6827eb8cc1fbcdccba67287d52e91
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.111.
|
|
1
|
+
3.111.1
|
|
@@ -176,11 +176,12 @@ a clock skew correction and retry requests with skewed client clocks.
|
|
|
176
176
|
end
|
|
177
177
|
|
|
178
178
|
def self.resolve_max_attempts(cfg)
|
|
179
|
-
value = (ENV['AWS_MAX_ATTEMPTS']
|
|
179
|
+
value = (ENV['AWS_MAX_ATTEMPTS']) ||
|
|
180
180
|
Aws.shared_config.max_attempts(profile: cfg.profile) ||
|
|
181
|
-
3
|
|
181
|
+
'3'
|
|
182
|
+
value = value.to_i
|
|
182
183
|
# Raise if provided value is not a positive integer
|
|
183
|
-
if
|
|
184
|
+
if value <= 0
|
|
184
185
|
raise ArgumentError,
|
|
185
186
|
'Must provide a positive integer for max_attempts profile '\
|
|
186
187
|
'option or for ENV[\'AWS_MAX_ATTEMPTS\']'
|
data/lib/aws-sdk-sso.rb
CHANGED
data/lib/aws-sdk-sso/client.rb
CHANGED
data/lib/aws-sdk-sts.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
|
@@ -2204,7 +2204,7 @@ module Aws::STS
|
|
|
2204
2204
|
params: params,
|
|
2205
2205
|
config: config)
|
|
2206
2206
|
context[:gem_name] = 'aws-sdk-core'
|
|
2207
|
-
context[:gem_version] = '3.111.
|
|
2207
|
+
context[:gem_version] = '3.111.1'
|
|
2208
2208
|
Seahorse::Client::Request.new(handlers, context)
|
|
2209
2209
|
end
|
|
2210
2210
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.111.
|
|
4
|
+
version: 3.111.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-01-
|
|
11
|
+
date: 2021-01-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|