diff options
author | Rafael H. Schloming <rhs@apache.org> | 2010-06-30 14:25:03 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2010-06-30 14:25:03 +0000 |
commit | 929f6ff2138e848c8d906fb623959bde464d9bb3 (patch) | |
tree | 917d4c2575c8e27e62efef736b317d6f55a2b8f0 /python/qpid/messaging/endpoints.py | |
parent | a6c6bb1a65eef1c758442aae721efdcc463c6cf1 (diff) | |
download | qpid-python-929f6ff2138e848c8d906fb623959bde464d9bb3.tar.gz |
added accessor for auth_username
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@959326 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/messaging/endpoints.py')
-rw-r--r-- | python/qpid/messaging/endpoints.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/qpid/messaging/endpoints.py b/python/qpid/messaging/endpoints.py index f7afc66d46..f989d6c918 100644 --- a/python/qpid/messaging/endpoints.py +++ b/python/qpid/messaging/endpoints.py @@ -137,6 +137,7 @@ class Connection(Endpoint): self.heartbeat = options.get("heartbeat") self.username = default(url.user, options.get("username", None)) self.password = default(url.password, options.get("password", None)) + self.auth_username = None self.sasl_mechanisms = options.get("sasl_mechanisms") self.sasl_service = options.get("sasl_service", "qpidd") |