aws-sdk-core 3.21.0 → 3.21.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e3a585a1201cb947b02277c975d145eaccd64a2d
4
- data.tar.gz: 3291a88b44edce997e8fec94a138f9de101720f6
3
+ metadata.gz: ab7f2e00b0f298848002d0c1687b455d13fb0e24
4
+ data.tar.gz: 257d3cd524213c2c228ae3e4b7ce7832a4ef901b
5
5
  SHA512:
6
- metadata.gz: 2e346bb0c9d68b0fd570ce16b18496399659d373b2f480b6f7bd80a4b6c2fd9d392b7d3ae0e4cabb1bf135c13d9c5c2450dbd81a7a2594af6fad4646a45a05ca
7
- data.tar.gz: ff787ba1c2d818247b7d2ff4552a54b9b3b9573b7f4c19a5793bad2e5196a8c958e1ef1d5d62c4290bd2d6eb93a47339203baf90cb242c71334160c7678a642d
6
+ metadata.gz: d44a78a561a24c569d32be293793ec3c3e03ced44733ba2a38d8f8c7e8fc09d6dcb5c3a00fde00b52789475648c98d49081b8b83ac094c85168236d66a85e9a1
7
+ data.tar.gz: af1850b9998d0edc36f4464e1fe978083586047104e7b6ffa1eeeb27921c3953d83e92d5082235dc53de87daaa7f96075cbeba6c2e96f44338efed9e35937442
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.21.0
1
+ 3.21.1
@@ -35,7 +35,9 @@ module Aws
35
35
  end
36
36
 
37
37
  context.http_response.on_error do
38
- context.http_response.body = context.http_response.raw_stream
38
+ # Potential enhancement to made
39
+ # since we don't want to track raw bytes in memory
40
+ context.http_response.body = StringIO.new
39
41
  end
40
42
 
41
43
  end
@@ -40,6 +40,6 @@ require_relative 'aws-sdk-sts/customizations'
40
40
  # @service
41
41
  module Aws::STS
42
42
 
43
- GEM_VERSION = '3.21.0'
43
+ GEM_VERSION = '3.21.1'
44
44
 
45
45
  end
@@ -1475,7 +1475,7 @@ module Aws::STS
1475
1475
  params: params,
1476
1476
  config: config)
1477
1477
  context[:gem_name] = 'aws-sdk-core'
1478
- context[:gem_version] = '3.21.0'
1478
+ context[:gem_version] = '3.21.1'
1479
1479
  Seahorse::Client::Request.new(handlers, context)
1480
1480
  end
1481
1481
 
@@ -10,7 +10,6 @@ module Seahorse
10
10
  @status_code = options[:status_code] || 0
11
11
  @headers = options[:headers] || Headers.new
12
12
  @body = options[:body] || StringIO.new
13
- @raw_stream = options[:raw_stream] || StringIO.new
14
13
  @listeners = Hash.new { |h,k| h[k] = [] }
15
14
  @complete = false
16
15
  @done = nil
@@ -27,12 +26,6 @@ module Seahorse
27
26
  # @return [StandardError, nil]
28
27
  attr_reader :error
29
28
 
30
- # Raw binary stream data used for eventstream only
31
- # body is concatenated parsed event structs in StringIO
32
- #
33
- # @return [IO]
34
- attr_accessor :raw_stream
35
-
36
29
  # @return [IO]
37
30
  def body
38
31
  @body
@@ -66,9 +59,6 @@ module Seahorse
66
59
  # @param [string] chunk
67
60
  def signal_data(chunk)
68
61
  unless chunk == ''
69
- # record raw binary stream for eventstream
70
- # in case error happens, body is used for emit/track events
71
- @raw_stream.write(chunk)
72
62
  @body.write(chunk)
73
63
  emit(:data, chunk)
74
64
  end
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.21.0
4
+ version: 3.21.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-05-17 00:00:00.000000000 Z
11
+ date: 2018-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath