Bug fix with queueReader
This commit is contained in:
parent
172b609b0e
commit
1bb7c1bd0a
2
setup.py
2
setup.py
|
@ -8,7 +8,7 @@ def read(fname):
|
||||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||||
args = {
|
args = {
|
||||||
"name":"data-transport",
|
"name":"data-transport",
|
||||||
"version":"1.0.9",
|
"version":"1.1.0",
|
||||||
"author":"The Phi Technology LLC","author_email":"info@the-phi.com",
|
"author":"The Phi Technology LLC","author_email":"info@the-phi.com",
|
||||||
"license":"MIT",
|
"license":"MIT",
|
||||||
"packages":["transport"]}
|
"packages":["transport"]}
|
||||||
|
|
|
@ -172,7 +172,7 @@ class QueueReader(MessageQueue,Reader):
|
||||||
|
|
||||||
r = stream
|
r = stream
|
||||||
|
|
||||||
qid = self.info.method.queue
|
qid = self.qhandler.method.queue
|
||||||
if qid not in self.data :
|
if qid not in self.data :
|
||||||
self.data[qid] = []
|
self.data[qid] = []
|
||||||
|
|
||||||
|
@ -202,7 +202,7 @@ class QueueReader(MessageQueue,Reader):
|
||||||
self.init(qid)
|
self.init(qid)
|
||||||
# r[qid] = []
|
# r[qid] = []
|
||||||
|
|
||||||
if self.info.method.message_count > 0:
|
if self.qhandler.method.message_count > 0:
|
||||||
|
|
||||||
self.channel.basic_consume(self.callback,queue=qid,no_ack=False);
|
self.channel.basic_consume(self.callback,queue=qid,no_ack=False);
|
||||||
self.channel.start_consuming()
|
self.channel.start_consuming()
|
||||||
|
|
Loading…
Reference in New Issue