eventq_rabbitmq 1.4.2 → 1.4.3
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ccf4a2e634039669e9e35306bb1d7a372d5bd4e
|
4
|
+
data.tar.gz: 6f902d351788f776d7e66bdc021b26a92cc475a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2811a2230f23938590eedfe58688848737244b5824d8a51332c5093d4854a39358de6c1f6cf44a121b5f4019dadb98ae9bb8c8fe3b91f8db555c254ddab937ff
|
7
|
+
data.tar.gz: 4c5c816c3c59bb7e0ab033cc5a0a7fe82a1bf84d1c5f0c5984c56135d06b5fb4aabdaec80ff087361f72f6295b6e846acf2edfc72b238533915033f07fb7a1ce
|
@@ -36,6 +36,8 @@ module EventQ
|
|
36
36
|
client = options[:client]
|
37
37
|
manager = EventQ::RabbitMq::QueueManager.new
|
38
38
|
|
39
|
+
connection = client.get_connection
|
40
|
+
|
39
41
|
#begin the queue loop for this thread
|
40
42
|
while true do
|
41
43
|
|
@@ -44,7 +46,7 @@ module EventQ
|
|
44
46
|
break
|
45
47
|
end
|
46
48
|
|
47
|
-
channel =
|
49
|
+
channel = connection.create_channel
|
48
50
|
|
49
51
|
#get the queue
|
50
52
|
q = manager.get_queue(channel, queue)
|
@@ -98,7 +100,6 @@ module EventQ
|
|
98
100
|
end
|
99
101
|
|
100
102
|
channel.close
|
101
|
-
channel.connection.close
|
102
103
|
|
103
104
|
#check if any message was received
|
104
105
|
if !received && !error
|
@@ -109,6 +110,8 @@ module EventQ
|
|
109
110
|
|
110
111
|
end
|
111
112
|
|
113
|
+
connection.close
|
114
|
+
|
112
115
|
end
|
113
116
|
@threads.push(thr)
|
114
117
|
|