aws-sdk-core 3.27.0 → 3.27.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/aws-sdk-sts.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +1 -1
- data/lib/seahorse/client/plugins/response_target.rb +8 -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: 4e1b1e49eb7965bfd686c38f351d63834d298abe
|
4
|
+
data.tar.gz: cbbbfa08ac0f9281bf25493122a1d3d937207f1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76f3a7b832352136feb46c92f451f5792f9004ef72e9b0b1e54229327e9d787b6980bf801cec692fd15d2efa9ed95ff08625abf7e6b943a6ae797c1d21e3528f
|
7
|
+
data.tar.gz: 49adfd072c7627f2e251484e2ddc582dea80c4ab09eae6e4ce0f3103480c983df45fcb829725bd08e2204dc7211c9bc61d0e6e758faccd647488c8cf77b716cc
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.27.
|
1
|
+
3.27.1
|
data/lib/aws-sdk-sts.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
@@ -41,7 +41,14 @@ module Seahorse
|
|
41
41
|
context.http_response.on_error do
|
42
42
|
body = context.http_response.body
|
43
43
|
File.unlink(body) if ManagedFile === body
|
44
|
-
|
44
|
+
# Aws::S3::Encryption::DecryptHandler (with lower priority)
|
45
|
+
# has callbacks registered after ResponseTarget::Handler,
|
46
|
+
# where http_response.body is an IODecrypter
|
47
|
+
# and has error callbacks handling for it.
|
48
|
+
# Thus avoid early remove of IODecrypter at ResponseTarget::Handler
|
49
|
+
unless context.http_response.body.respond_to?(:io)
|
50
|
+
context.http_response.body = StringIO.new
|
51
|
+
end
|
45
52
|
end
|
46
53
|
end
|
47
54
|
|
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.27.
|
4
|
+
version: 3.27.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: 2018-09-
|
11
|
+
date: 2018-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|