diff options
author | Rafael H. Schloming <rhs@apache.org> | 2007-01-16 05:30:43 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2007-01-16 05:30:43 +0000 |
commit | fb4934c344678ff9ed23e976d49ec78ac6c56f54 (patch) | |
tree | c54cc7b1333fcea384c59c0d41cb13e9a0f791b6 | |
parent | 8021505b531ba4c022ab89f8a2bd59bf8af3c1fc (diff) | |
download | qpid-python-fb4934c344678ff9ed23e976d49ec78ac6c56f54.tar.gz |
changed reliable to true by default
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@496596 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | python/qpid/peer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid/peer.py b/python/qpid/peer.py index a5686a917d..0618bdf00e 100644 --- a/python/qpid/peer.py +++ b/python/qpid/peer.py @@ -176,7 +176,7 @@ class Channel: self.responder = Responder(self.write) # XXX: better switch - self.reliable = False + self.reliable = True def close(self, reason): if self.closed: |