Browse Source

Bug fix with queueReader

Steve Nyemba 5 years ago
parent
commit
1bb7c1bd0a
2 changed files with 3 additions and 3 deletions
  1. 1 1
      setup.py
  2. 2 2
      transport/queue.py

+ 1 - 1
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"]}

+ 2 - 2
transport/queue.py

@@ -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()