aws-sdk-core 3.27.0 → 3.27.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b0e3ca2b8782a5dd684d429dad4f5c31c27120c6
4
- data.tar.gz: 75e5ddc5e74f7a2b111ff3159b28293f95565a00
3
+ metadata.gz: 4e1b1e49eb7965bfd686c38f351d63834d298abe
4
+ data.tar.gz: cbbbfa08ac0f9281bf25493122a1d3d937207f1e
5
5
  SHA512:
6
- metadata.gz: 5b30e8ac8033be4021986586add663be296dd667c70261b38f028acc48439d32e92054cd69f5fa5154144cad1e35c2cc399fdead860f937ee5c84d919ddb8b0d
7
- data.tar.gz: 7b46068f1a7dcd9158ae016288488a4c52077ec988c0285c5bef61934fe76ef9a27e5d68264c68ae21bb66f5c964df22ba902d118aa05f1f3c8cf5d90c0f80a1
6
+ metadata.gz: 76f3a7b832352136feb46c92f451f5792f9004ef72e9b0b1e54229327e9d787b6980bf801cec692fd15d2efa9ed95ff08625abf7e6b943a6ae797c1d21e3528f
7
+ data.tar.gz: 49adfd072c7627f2e251484e2ddc582dea80c4ab09eae6e4ce0f3103480c983df45fcb829725bd08e2204dc7211c9bc61d0e6e758faccd647488c8cf77b716cc
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.27.0
1
+ 3.27.1
@@ -40,6 +40,6 @@ require_relative 'aws-sdk-sts/customizations'
40
40
  # @service
41
41
  module Aws::STS
42
42
 
43
- GEM_VERSION = '3.27.0'
43
+ GEM_VERSION = '3.27.1'
44
44
 
45
45
  end
@@ -1506,7 +1506,7 @@ module Aws::STS
1506
1506
  params: params,
1507
1507
  config: config)
1508
1508
  context[:gem_name] = 'aws-sdk-core'
1509
- context[:gem_version] = '3.27.0'
1509
+ context[:gem_version] = '3.27.1'
1510
1510
  Seahorse::Client::Request.new(handlers, context)
1511
1511
  end
1512
1512
 
@@ -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
- context.http_response.body = StringIO.new
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.0
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-06 00:00:00.000000000 Z
11
+ date: 2018-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath