diff options
author | Gordon Sim <gsim@apache.org> | 2008-05-09 07:45:50 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-05-09 07:45:50 +0000 |
commit | 7a3ba4a389bfdbdbf526bfd37fe73cbc6c04db8e (patch) | |
tree | 4fce137bcfdbb6a670b83bc515d93ff87727ef88 /python/qpid/delegates.py | |
parent | 24cb13a40d5a42152656326c490d152f0f468476 (diff) | |
download | qpid-python-7a3ba4a389bfdbdbf526bfd37fe73cbc6c04db8e.tar.gz |
Make ANONYMOUS the default mechanism
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@654712 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/delegates.py')
-rw-r--r-- | python/qpid/delegates.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid/delegates.py b/python/qpid/delegates.py index c958313671..f31d9a0f09 100644 --- a/python/qpid/delegates.py +++ b/python/qpid/delegates.py @@ -129,7 +129,7 @@ class Client(Delegate): self.connection.read_header() def connection_start(self, ch, start): - ch.connection_start_ok(client_properties=Client.PROPERTIES) + ch.connection_start_ok(client_properties=Client.PROPERTIES, mechanism="ANONYMOUS") def connection_tune(self, ch, tune): ch.connection_tune_ok() |