diff options
| author | Ted Ross <tross@apache.org> | 2010-06-24 18:48:53 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2010-06-24 18:48:53 +0000 |
| commit | a5ec9d6b06be38e71a776d82f11c867e0dc4f003 (patch) | |
| tree | 3340f5452933113406f8fd6f99b5bc6d13d9eec9 | |
| parent | f111ab7dca58ad68d7d9252e4c6010b4b8c2f784 (diff) | |
| download | qpid-python-a5ec9d6b06be38e71a776d82f11c867e0dc4f003.tar.gz | |
Handle the case where older versions of the broker supply no delivery-properties to messages
originated from within the broker.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@957676 13f79535-47bb-0310-9956-ffa450edef68
| -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 af7a895dc4..062cb6f341 100644 --- a/qpid/extras/qmf/src/py/qmf/console.py +++ b/qpid/extras/qmf/src/py/qmf/console.py @@ -2381,7 +2381,7 @@ class Broker(Thread): # dp = msg.get("delivery_properties") rkey = None - if dp.routing_key: + if dp and dp.routing_key: rkey = dp.routing_key items = rkey.split('.') if len(items) >= 4: |
