lucid-cumulus 0.11.1 → 0.11.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NDEwMGZjNjNjZmI5YWE2ZGVjMDUzMjAxZDZiOGY1NmNkZGE1NWVmZg==
4
+ MWFkZmZlMWNkZmE4ZWFlNjAyMWYwMTM1ZDFiNDhkNGExMGY4M2ZmMw==
5
5
  data.tar.gz: !binary |-
6
- MjM5ZjIzNDJlOTFmZTJjN2UxOTBjZDUxM2UwYTQyNTZkZWRmZDIwNg==
6
+ OThkZDU3ODgxZmIxODdhMDhjYzZlNjNjOGU3ODY5ODhmYjc4Yjc4Nw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZDU1OWQ4MTFlM2NmOWMyM2VlMDVjZDBhNDhiMTNkYzFmM2ZiY2E5MDc3ODdm
10
- NDU2ZmY1OWMyNzA3N2ZhNmUzZjI3NTM4OTQ2NjQ5NzZiZmQ5Y2U3ODEwNDZh
11
- ODc2NjhkZjJhZjU5ZGUxZDkxYjBjNzdhYWM0NmRiZTE5NDYxYTA=
9
+ MTE1NDBkMzNiYmRmNzc4YTM3OTYyMWJkM2E1MDQzYjQzZDFiZWI1Y2I5OWZh
10
+ ZWEyNTk2ZGE3NjhjODAzZTBhNjAzMDcwMTM2ZDIwYWFmMGIzMDlkYzM4NjQ4
11
+ NGU4MGViZjM2NGUyYzI3ZDZkNGE0YWFhNzU2YzcwNTllODRiM2U=
12
12
  data.tar.gz: !binary |-
13
- NWQyOGYwMDAzYzdkN2YyMGQyZjkyMjJmMDBjOWYxYzhhNWIzYTFhNjgzNzlj
14
- ZjZjNDZlYjU1MDAzZGVkNmQ5MzJhM2I4OWVjNzkxMDljZTlmYjZiNmM5YmM0
15
- OTc5YmNlYWRiZmFiOTA1MDY4MjNjZDYwMWZlZDExZjYzOTA5NjU=
13
+ M2NkOWQ2ZjAzNzcyMmMzNTgyYWJmOWQ4OWU3MTg1MDY2ZThlMDM0ZGIzZDgx
14
+ ZmE5NzQyNzFhZDliNDMzNzE1M2M2NDc4NmUzOWRiMDJmOTRjZWJjOGUwYzJh
15
+ ZDIyMTAyMzZiMGNiMTA2M2Y5NWI1NGU0ZmViZGFhMjI3M2EyNjQ=
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lucid-cumulus (0.11.1)
4
+ lucid-cumulus (0.11.2)
5
5
  aws-sdk (= 2.2.30)
6
6
  parse-cron (~> 0.1.4)
7
7
 
@@ -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.
@@ -4,7 +4,7 @@ require "bundler"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "lucid-cumulus"
7
- s.version = "0.11.1"
7
+ s.version = "0.11.2"
8
8
  s.platform = Gem::Platform::RUBY
9
9
  s.authors = ["Keilan Jackson", "Mark Siebert"]
10
10
  s.email = "cumulus@lucidchart.com"
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.1
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-08 00:00:00.000000000 Z
12
+ date: 2016-07-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: aws-sdk