cfn-bridge 0.0.5 → 0.0.6
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 280b19ea15f98e64ee6802b9393c848174ee84aa
|
4
|
+
data.tar.gz: f7ace3f96cfa6d81aba82ff82590c4de4e0437a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f5f9172cf3431d7d72d44a17f08da4950ce3eb6920dccd09c457d5096ca56650e611c5ceeab7fb35dd591f32c5f45efab2f450337576f3485f13a7a0542ecdd
|
7
|
+
data.tar.gz: 98904baa461538f20bb34af35afcb79080c2c9e854df09158d11a77b14f5406ef1fd9551c0e4e10937008799a8c99f45b3722364d1128f43a459e2984a6377d3
|
@@ -2,6 +2,7 @@ require 'faraday'
|
|
2
2
|
require 'faraday_middleware'
|
3
3
|
require 'typhoeus'
|
4
4
|
require 'typhoeus/adapters/faraday'
|
5
|
+
require 'cloud_formation/bridge/util'
|
5
6
|
|
6
7
|
module CloudFormation
|
7
8
|
module Bridge
|
@@ -20,7 +21,11 @@ module CloudFormation
|
|
20
21
|
f.adapter :typhoeus
|
21
22
|
end
|
22
23
|
|
23
|
-
connection.put(url, data, 'Content-Type' => '')
|
24
|
+
response = connection.put(url, data, 'Content-Type' => '')
|
25
|
+
|
26
|
+
Util::LOGGER.info("S3 response was #{response.inspect}")
|
27
|
+
|
28
|
+
response
|
24
29
|
end
|
25
30
|
|
26
31
|
end
|