summaryrefslogtreecommitdiff
path: root/python
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
commit65c1d81404e58bf68b5d4a583df1fcffed225eb6 (patch)
treec643a770ce17bc644905a370b098f871e07bca29 /python
parentab1b302733b70972f93811ae2193fe5c891b47a1 (diff)
downloadqpid-python-65c1d81404e58bf68b5d4a583df1fcffed225eb6.tar.gz
QPID-3175: removed the sasl_mechanisms default
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1239795 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python')
-rw-r--r--python/qpid/messaging/endpoints.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid/messaging/endpoints.py b/python/qpid/messaging/endpoints.py
index 85ec7d331c..faa382a755 100644
--- a/python/qpid/messaging/endpoints.py
+++ b/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")