aws-sdk-core 3.46.1 → 3.46.2
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 +1 -0
- data/lib/aws-sdk-sts.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +1 -1
- data/lib/seahorse/client/net_http/patches.rb +7 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea0675c1b3dd6a1df7b3d1633f52557acd31fe44
|
|
4
|
+
data.tar.gz: b70038231fedd16ba86307a1ce71d962959dbc7b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d806391d8741594c74e188e96bf511da0c9210e47e86ca8c8d386c1146dac14fafeed7fca216aa21a3ebe6ff029250ec024fd68776cb503e5f186576b1d3ac04
|
|
7
|
+
data.tar.gz: c0a1a2a2c7f61c528cd68ed0fd0b29be6c5e13a0c054d76a5d072c76142afa4794ada5f0a3da71e09f0d4f92cbc37a7b8bc9faee35d37901438bba1165eac51a
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.46.
|
|
1
|
+
3.46.2
|
|
@@ -78,6 +78,7 @@ A delay randomiser function used by the default backoff function. Some predefine
|
|
|
78
78
|
'Throttling', # query services
|
|
79
79
|
'ThrottlingException', # json services
|
|
80
80
|
'RequestThrottled', # sqs
|
|
81
|
+
'RequestThrottledException',
|
|
81
82
|
'ProvisionedThroughputExceededException', # dynamodb
|
|
82
83
|
'TransactionInProgressException', # dynamodb
|
|
83
84
|
'RequestLimitExceeded', # ec2
|
data/lib/aws-sdk-sts.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
|
@@ -10,6 +10,12 @@ module Seahorse
|
|
|
10
10
|
|
|
11
11
|
def self.apply!
|
|
12
12
|
return unless RUBY_VERSION < '2.5'
|
|
13
|
+
if RUBY_VERSION >= '2.3'
|
|
14
|
+
Net::HTTP::IDEMPOTENT_METHODS_.clear
|
|
15
|
+
return
|
|
16
|
+
end
|
|
17
|
+
# no further patches needed for above versions
|
|
18
|
+
|
|
13
19
|
if RUBY_VERSION >= '2.0'
|
|
14
20
|
Net::HTTP.send(:include, Ruby_2)
|
|
15
21
|
Net::HTTP::IDEMPOTENT_METHODS_.clear
|
|
@@ -30,7 +36,7 @@ module Seahorse
|
|
|
30
36
|
begin
|
|
31
37
|
res = Net::HTTPResponse.read_new(@socket)
|
|
32
38
|
res.decode_content = req.decode_content
|
|
33
|
-
end while res.kind_of?(Net::
|
|
39
|
+
end while res.kind_of?(Net::HTTPInformation)
|
|
34
40
|
|
|
35
41
|
res.uri = req.uri
|
|
36
42
|
|
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.46.
|
|
4
|
+
version: 3.46.2
|
|
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: 2019-02-
|
|
11
|
+
date: 2019-02-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|