summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2012-02-02 19:54:49 +0000
committerRafael H. Schloming <rhs@apache.org>2012-02-02 19:54:49 +0000
commit0837de3f63e5b59535edcbc737182e959d4b32ed (patch)
treef7964c9563cfd7cef97b4253f9169e8d59f9d264
parent317c8a127c4393a3f32820345ae77fbe21d49f73 (diff)
downloadqpid-python-0837de3f63e5b59535edcbc737182e959d4b32ed.tar.gz
QPID-3175: removed the sasl_mechanisms default
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1239795 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/python/qpid/messaging/endpoints.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/python/qpid/messaging/endpoints.py b/qpid/python/qpid/messaging/endpoints.py
index 85ec7d331c..faa382a755 100644
--- a/qpid/python/qpid/messaging/endpoints.py
+++ b/qpid/python/qpid/messaging/endpoints.py
@@ -148,7 +148,7 @@ class Connection(Endpoint):
self.password = default(url.password, options.get("password", None))
self.auth_username = None
- self.sasl_mechanisms = options.get("sasl_mechanisms", "ANONYMOUS")
+ self.sasl_mechanisms = options.get("sasl_mechanisms")
self.sasl_service = options.get("sasl_service", "qpidd")
self.sasl_min_ssf = options.get("sasl_min_ssf")
self.sasl_max_ssf = options.get("sasl_max_ssf")