summaryrefslogtreecommitdiff
path: root/python/qpid
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2007-02-20 15:39:14 +0000
committerGordon Sim <gsim@apache.org>2007-02-20 15:39:14 +0000
commit08b43d86e9fd619cc3c07fbfd5c9d6befe978e8e (patch)
tree6c4bbd234cf5a2bd94d4388e0ed5a550cea6c919 /python/qpid
parent56e08f275a1b25aae1be0a0e8f7adaede3f6c184 (diff)
downloadqpid-python-08b43d86e9fd619cc3c07fbfd5c9d6befe978e8e.tar.gz
Fixed bug where response id rather than request id was being used to get listener for response.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@509611 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid')
-rw-r--r--python/qpid/peer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid/peer.py b/python/qpid/peer.py
index 3f7be699c2..d1f49fb2da 100644
--- a/python/qpid/peer.py
+++ b/python/qpid/peer.py
@@ -146,7 +146,7 @@ class Requester:
self.write(frame, content)
def receive(self, channel, frame):
- listener = self.outstanding.pop(frame.id)
+ listener = self.outstanding.pop(frame.request_id)
listener(channel, frame)
class Responder: