emque-consuming 1.6.0 → 1.6.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 +5 -5
- data/.travis.yml +3 -3
- data/CHANGELOG.md +1 -0
- data/lib/emque/consuming/adapters/rabbit_mq/worker.rb +16 -13
- data/lib/emque/consuming/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: bd761adf7f6566312a595dc7daeabb177df4bc66a0fa8eba94aca0fc0f2bda12
|
|
4
|
+
data.tar.gz: a2b0e6f4d089df133d0df082e36bb7fe54318813d348cdeb94af3f06ec6772d1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2d8e044f5507502fbc4f58263c78d50840a3ac95f187bd780328b2a206fdd1ba74f13283d28c09184ba0df00924b24a47d6bb07bdc4975ef540ca467240927f
|
|
7
|
+
data.tar.gz: f790e603dafdf50498496651ac226b211b3071064cfec902ba66be54d35b3e3824b56e281a1c2f22962fdfbfda1457d873b2a5657e5db439d1f9ca42467eec03
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# Emque Consuming CHANGELOG
|
|
2
2
|
|
|
3
|
+
- [Fixes bug with Bunny 2.12 failing when exchange names are symbols](https://github.com/emque/emque-consuming/pull/77) 1.6.1
|
|
3
4
|
- [Re-enable pipe-ruby `raise_on_error` option to fix automatic retries directing messages to the error queue](https://github.com/emque/emque-consuming/pull/75) 1.6.0
|
|
4
5
|
- [Update the puma gem to allow v3](https://github.com/emque/emque-consuming/pull/72) 1.5.0
|
|
5
6
|
- [Disable pipe-ruby `raise_on_error` option to prevent duplicate erorrs](https://github.com/emque/emque-consuming/pull/74) 1.4.0
|
|
@@ -31,19 +31,22 @@ module Emque
|
|
|
31
31
|
channel.prefetch(config.adapter.options[:prefetch])
|
|
32
32
|
end
|
|
33
33
|
|
|
34
|
-
self.queue =
|
|
35
|
-
|
|
36
|
-
.
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
.
|
|
45
|
-
|
|
46
|
-
|
|
34
|
+
self.queue = channel
|
|
35
|
+
.queue(
|
|
36
|
+
"emque.#{config.app_name}.#{topic}",
|
|
37
|
+
:durable => config.adapter.options[:durable],
|
|
38
|
+
:auto_delete => config.adapter.options[:auto_delete],
|
|
39
|
+
:arguments => {
|
|
40
|
+
"x-dead-letter-exchange" => "#{config.app_name}.error"
|
|
41
|
+
}
|
|
42
|
+
)
|
|
43
|
+
.bind(
|
|
44
|
+
channel.fanout(
|
|
45
|
+
topic.to_s,
|
|
46
|
+
:durable => true,
|
|
47
|
+
:auto_delete => false,
|
|
48
|
+
)
|
|
49
|
+
)
|
|
47
50
|
end
|
|
48
51
|
|
|
49
52
|
def start
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: emque-consuming
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Williams
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2019-
|
|
12
|
+
date: 2019-08-05 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: celluloid
|
|
@@ -289,8 +289,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
289
289
|
- !ruby/object:Gem::Version
|
|
290
290
|
version: '0'
|
|
291
291
|
requirements: []
|
|
292
|
-
|
|
293
|
-
rubygems_version: 2.5.2.3
|
|
292
|
+
rubygems_version: 3.0.3
|
|
294
293
|
signing_key:
|
|
295
294
|
specification_version: 4
|
|
296
295
|
summary: Microservices framework for Ruby
|