diff options
| author | Ted Ross <tross@apache.org> | 2008-12-15 18:09:59 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2008-12-15 18:09:59 +0000 |
| commit | 4d3a365d2c7fc3326536818e3d33c4dd7df247df (patch) | |
| tree | 6b81f35302a392060a806648c7397276787cd683 /qpid/python | |
| parent | d58001500e892b95e0421ad48fe4a80a45fe8491 (diff) | |
| download | qpid-python-4d3a365d2c7fc3326536818e3d33c4dd7df247df.tar.gz | |
Suppress spurious object updates when "rcvObjects" is false.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@726750 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
| -rw-r--r-- | qpid/python/qmf/console.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/python/qmf/console.py b/qpid/python/qmf/console.py index 739ccb6b6b..bba0386d6a 100644 --- a/qpid/python/qmf/console.py +++ b/qpid/python/qmf/console.py @@ -577,7 +577,7 @@ class Session: finally: self.cv.release() - if self.console != None: + if self.console and self.rcvObjects: if prop: self.console.objectProps(broker, object) if stat: |
