em_aws 0.2.7 → 0.2.8
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.
- data/Gemfile.lock +3 -3
- data/HISTORY.md +13 -0
- data/lib/aws/core/http/em_http_handler.rb +2 -2
- data/lib/em_aws/version.rb +1 -1
- metadata +2 -2
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
em_aws (0.2.
|
|
4
|
+
em_aws (0.2.8)
|
|
5
5
|
aws-sdk
|
|
6
6
|
em-http-request
|
|
7
7
|
em-synchrony
|
|
@@ -32,7 +32,7 @@ GEM
|
|
|
32
32
|
eventmachine (1.0.3)
|
|
33
33
|
eventmachine (1.0.3-java)
|
|
34
34
|
eventmachine_httpserver (0.2.1)
|
|
35
|
-
hot_tub (0.2.
|
|
35
|
+
hot_tub (0.2.5)
|
|
36
36
|
http_parser.rb (0.5.3)
|
|
37
37
|
http_parser.rb (0.5.3-java)
|
|
38
38
|
json (1.7.7)
|
|
@@ -46,7 +46,7 @@ GEM
|
|
|
46
46
|
rspec-core (2.13.1)
|
|
47
47
|
rspec-expectations (2.13.0)
|
|
48
48
|
diff-lcs (>= 1.1.3, < 2.0)
|
|
49
|
-
rspec-mocks (2.13.
|
|
49
|
+
rspec-mocks (2.13.1)
|
|
50
50
|
uuidtools (2.1.3)
|
|
51
51
|
|
|
52
52
|
PLATFORMS
|
data/HISTORY.md
CHANGED
|
@@ -4,6 +4,19 @@ EmAws Changelog
|
|
|
4
4
|
HEAD
|
|
5
5
|
=======
|
|
6
6
|
|
|
7
|
+
0.2.8
|
|
8
|
+
=======
|
|
9
|
+
|
|
10
|
+
- Fix regression for non-pooled requests causing AWS::SimpleDB::Errors::InvalidRequest
|
|
11
|
+
|
|
12
|
+
0.2.7
|
|
13
|
+
=======
|
|
14
|
+
|
|
15
|
+
- Use update hot_tub requirement
|
|
16
|
+
|
|
17
|
+
0.2.6
|
|
18
|
+
=======
|
|
19
|
+
|
|
7
20
|
- Use [hot_tub](https://github.com/JoshMcKin/hot_tub) for connection pooling and sessions
|
|
8
21
|
|
|
9
22
|
0.2.5
|
|
@@ -152,8 +152,8 @@ module AWS
|
|
|
152
152
|
return EM::Synchrony.sync req unless opts[:async]
|
|
153
153
|
end
|
|
154
154
|
else
|
|
155
|
-
|
|
156
|
-
req = EM::HttpRequest.new(url,
|
|
155
|
+
clnt_opts = @client_options.merge(:inactivity_timeout => request.read_timeout)
|
|
156
|
+
req = EM::HttpRequest.new(url,clnt_opts).send(method,opts)
|
|
157
157
|
req.stream &read_block if block_given?
|
|
158
158
|
return EM::Synchrony.sync req unless opts[:async]
|
|
159
159
|
end
|
data/lib/em_aws/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: em_aws
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.8
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-04-
|
|
12
|
+
date: 2013-04-08 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: aws-sdk
|