diff options
| author | Kenneth Anthony Giusti <kgiusti@apache.org> | 2011-12-07 21:50:47 +0000 |
|---|---|---|
| committer | Kenneth Anthony Giusti <kgiusti@apache.org> | 2011-12-07 21:50:47 +0000 |
| commit | 80162c026691899a7c2fd9c0b73072185797dacc (patch) | |
| tree | ada03fe0b725fa5f512cf7fc9c20d3a1077ef470 /qpid | |
| parent | 62f43698f2258d10db685acda70ffe01bd4b1762 (diff) | |
| download | qpid-python-80162c026691899a7c2fd9c0b73072185797dacc.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@1211654 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid')
| -rw-r--r-- | qpid/extras/qmf/src/py/qmf/console.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/extras/qmf/src/py/qmf/console.py b/qpid/extras/qmf/src/py/qmf/console.py index f0fba2db04..e8be643c0f 100644 --- a/qpid/extras/qmf/src/py/qmf/console.py +++ b/qpid/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. |
