summaryrefslogtreecommitdiff
path: root/python/qpid/peer.py
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2008-12-02 18:35:41 +0000
committerGordon Sim <gsim@apache.org>2008-12-02 18:35:41 +0000
commit0fa4afae5e690b1cf147ebbe60641b448fcb5c31 (patch)
tree6ec78b3451d1205c947e63bfb39c014b5e033959 /python/qpid/peer.py
parentbb9025d388d7c1a0f6b4f471e05e51bfb191ea56 (diff)
downloadqpid-python-0fa4afae5e690b1cf147ebbe60641b448fcb5c31.tar.gz
QPID-1419: remove wip support from 0-9 python client
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@722557 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/peer.py')
-rw-r--r--python/qpid/peer.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/python/qpid/peer.py b/python/qpid/peer.py
index 0932efeab3..648f32ceef 100644
--- a/python/qpid/peer.py
+++ b/python/qpid/peer.py
@@ -193,11 +193,7 @@ class Channel:
self.futures = {}
self.control_queue = Queue(0)#used for incoming methods that appas may want to handle themselves
- # Use reliable framing if version == 0-9.
- if spec.major == 0 and spec.minor == 9:
- self.invoker = self.invoke_reliable
- else:
- self.invoker = self.invoke_method
+ self.invoker = self.invoke_method
self.use_execution_layer = (spec.major == 0 and spec.minor == 10) or (spec.major == 99 and spec.minor == 0)
self.synchronous = True