summaryrefslogtreecommitdiff
path: root/extras
diff options
context:
space:
mode:
authorKenneth Anthony Giusti <kgiusti@apache.org>2011-12-07 21:50:47 +0000
committerKenneth Anthony Giusti <kgiusti@apache.org>2011-12-07 21:50:47 +0000
commit49346a8c7b6017f4fed65171d4e109cbf769bf80 (patch)
tree6f1c4c0bd06f6bf49dcfd31732317ee71fc81c18 /extras
parent1bc09a3209bac1d73fb9c6c81080ad1f112e6db6 (diff)
downloadqpid-python-49346a8c7b6017f4fed65171d4e109cbf769bf80.tar.gz
QPID-3667: do not set the user-id header in the messages if the connection does not provide a proper user-id
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1211654 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'extras')
-rw-r--r--extras/qmf/src/py/qmf/console.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/qmf/src/py/qmf/console.py b/extras/qmf/src/py/qmf/console.py
index f0fba2db04..e8be643c0f 100644
--- a/extras/qmf/src/py/qmf/console.py
+++ b/extras/qmf/src/py/qmf/console.py
@@ -2438,7 +2438,7 @@ class Broker(Thread):
if uid.__class__ == tuple and len(uid) == 2:
self.saslUser = uid[1]
else:
- self.saslUser = self.authUser
+ self.saslUser = None
# prevent topic queues from filling up (and causing the agents to
# disconnect) by discarding the oldest queued messages when full.