eventq 2.1.0 → 2.1.1
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 +4 -4
- data/lib/eventq.rb +1 -0
- data/lib/eventq/eventq_base/queue.rb +2 -0
- 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: 50c59e4ec2bbc380df907fc8b085dd2d7d54957eea3a011e7f5b97158abaafe7
|
|
4
|
+
data.tar.gz: 3af24846b748e58f424e420b89eafd38da1f182233db6ef9754024463d201961
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8dc1863c3834f869b3add677ea798ddbb8ebb8467eaf54d632abefad93989785d264c95b0146b08eaf008038c9280c0206c97b29aaa0b07a35922ee229c8a4b7
|
|
7
|
+
data.tar.gz: 8c2efc5e7da28333993eceef32c39a0b7238c1379e5e37be53dad4a1e826192e9a19917dd5c276710d093dfbda72573afb27aabae99f6887ab83d473891782c7
|
data/lib/eventq.rb
CHANGED
|
@@ -20,6 +20,8 @@ module EventQ
|
|
|
20
20
|
@max_receive_count = 30
|
|
21
21
|
# Default max retry attempts is 5
|
|
22
22
|
@max_retry_attempts = 5
|
|
23
|
+
# Default max retry_delay is 5000 (5seconds)
|
|
24
|
+
@max_retry_delay = 5000
|
|
23
25
|
# Default require signature to false
|
|
24
26
|
@require_signature = false
|
|
25
27
|
# Default retry delay is 30 seconds
|