lucid-cumulus 0.11.1 → 0.11.2
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 +8 -8
- data/Gemfile.lock +1 -1
- data/lib/sqs/models/QueueConfig.rb +5 -5
- data/lucid-cumulus.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MWFkZmZlMWNkZmE4ZWFlNjAyMWYwMTM1ZDFiNDhkNGExMGY4M2ZmMw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OThkZDU3ODgxZmIxODdhMDhjYzZlNjNjOGU3ODY5ODhmYjc4Yjc4Nw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MTE1NDBkMzNiYmRmNzc4YTM3OTYyMWJkM2E1MDQzYjQzZDFiZWI1Y2I5OWZh
|
10
|
+
ZWEyNTk2ZGE3NjhjODAzZTBhNjAzMDcwMTM2ZDIwYWFmMGIzMDlkYzM4NjQ4
|
11
|
+
NGU4MGViZjM2NGUyYzI3ZDZkNGE0YWFhNzU2YzcwNTllODRiM2U=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
M2NkOWQ2ZjAzNzcyMmMzNTgyYWJmOWQ4OWU3MTg1MDY2ZThlMDM0ZGIzZDgx
|
14
|
+
ZmE5NzQyNzFhZDliNDMzNzE1M2M2NDc4NmUzOWRiMDJmOTRjZWJjOGUwYzJh
|
15
|
+
ZDIyMTAyMzZiMGNiMTA2M2Y5NWI1NGU0ZmViZGFhMjI3M2EyNjQ=
|
data/Gemfile.lock
CHANGED
@@ -50,11 +50,11 @@ module Cumulus
|
|
50
50
|
#
|
51
51
|
# attributes - the queue attributes in AWS
|
52
52
|
def populate!(attributes)
|
53
|
-
@delay = if attributes["DelaySeconds"] then attributes["DelaySeconds"] end
|
54
|
-
@max_message_size = if attributes["MaximumMessageSize"] then attributes["MaximumMessageSize"] end
|
55
|
-
@message_retention = if attributes["MessageRetentionPeriod"] then attributes["MessageRetentionPeriod"] end
|
56
|
-
@receive_wait_time = if attributes["ReceiveMessageWaitTimeSeconds"] then attributes["ReceiveMessageWaitTimeSeconds"] end
|
57
|
-
@visibility_timeout = if attributes["VisibilityTimeout"] then attributes["VisibilityTimeout"] end
|
53
|
+
@delay = if attributes["DelaySeconds"] then attributes["DelaySeconds"].to_i end
|
54
|
+
@max_message_size = if attributes["MaximumMessageSize"] then attributes["MaximumMessageSize"].to_i end
|
55
|
+
@message_retention = if attributes["MessageRetentionPeriod"] then attributes["MessageRetentionPeriod"].to_i end
|
56
|
+
@receive_wait_time = if attributes["ReceiveMessageWaitTimeSeconds"] then attributes["ReceiveMessageWaitTimeSeconds"].to_i end
|
57
|
+
@visibility_timeout = if attributes["VisibilityTimeout"] then attributes["VisibilityTimeout"].to_i end
|
58
58
|
@dead_letter = if attributes["RedrivePolicy"] then DeadLetterConfig.new().populate!(attributes["RedrivePolicy"]) end
|
59
59
|
|
60
60
|
# Policy is handled specially because we store them in a separate file locally.
|
data/lucid-cumulus.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lucid-cumulus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.11.
|
4
|
+
version: 0.11.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Keilan Jackson
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-07-
|
12
|
+
date: 2016-07-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: aws-sdk
|