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()
|
||||
args = {
|
||||
"name":"data-transport",
|
||||
"version":"1.0.9",
|
||||
"version":"1.1.0",
|
||||
"author":"The Phi Technology LLC","author_email":"info@the-phi.com",
|
||||
"license":"MIT",
|
||||
"packages":["transport"]}
|
||||
|
|
|
@ -172,7 +172,7 @@ class QueueReader(MessageQueue,Reader):
|
|||
|
||||
r = stream
|
||||
|
||||
qid = self.info.method.queue
|
||||
qid = self.qhandler.method.queue
|
||||
if qid not in self.data :
|
||||
self.data[qid] = []
|
||||
|
||||
|
@ -202,7 +202,7 @@ class QueueReader(MessageQueue,Reader):
|
|||
self.init(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.start_consuming()
|
||||
|
|
Loading…
Reference in New Issue