uc3-dmp-dynamo 0.0.6 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/uc3-dmp-dynamo/client.rb +4 -1
- data/lib/uc3-dmp-dynamo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee2c663d3ea38fa977b1da431a056b6978efb1ec45c6c2449ff549a961bb08e3
|
4
|
+
data.tar.gz: b6b94f7caea0f1967a215b4dd8284fefa45ea6c906d3c0cb597247d217aeae53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e0c5b2af7500be27fc66ea6a15f3296d3c116ac025a58e668be7d7687248c4fcf174f11705ac3faa6d338594f48f563e7cfef93cf1feb8851bbb34f279c4d7a
|
7
|
+
data.tar.gz: e8fa984ec6a3e325b517634dd7b771a31a03b7a11df3394f6fa47effecbaf8fc0fc23783f67b391934c7c9d969450ebe84a181f70d7f9eefff998d682964a767
|
@@ -79,7 +79,10 @@ module Uc3DmpDynamo
|
|
79
79
|
puts "QUERY RESULT:"
|
80
80
|
puts resp.items.first.inspect
|
81
81
|
|
82
|
-
resp.items.any?
|
82
|
+
return [] unless resp.items.any?
|
83
|
+
return resp.items if resp.items.first.is_a?(Hash)
|
84
|
+
|
85
|
+
resp.items.first.respond_to?(:item) ? resp.items.map(&:item) : resp.items
|
83
86
|
rescue Aws::Errors::ServiceError => e
|
84
87
|
raise ClientError, format(MSG_DYNAMO_ERROR, msg: e.message, trace: e.backtrace)
|
85
88
|
end
|