diff options
| author | Kim van der Riet <kpvdr@apache.org> | 2008-04-08 19:29:08 +0000 |
|---|---|---|
| committer | Kim van der Riet <kpvdr@apache.org> | 2008-04-08 19:29:08 +0000 |
| commit | 43aaed1c309c8c7ff95695109cf49b5b9157f4b6 (patch) | |
| tree | 6332e1a4d4036f3efb720454c14f89139d34655d /python/qpid/management.py | |
| parent | f18d1f7f3c4929752353c7beb1c7ae09e3ff3636 (diff) | |
| download | qpid-python-43aaed1c309c8c7ff95695109cf49b5b9157f4b6.tar.gz | |
Patch from Ted Ross: QPID-907: Management Improvements for C++ Broker and Store
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@646045 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/management.py')
| -rw-r--r-- | python/qpid/management.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/qpid/management.py b/python/qpid/management.py index b3bc068166..b08566ee4f 100644 --- a/python/qpid/management.py +++ b/python/qpid/management.py @@ -351,6 +351,8 @@ class managementClient: codec.encode_double (double (value)) elif typecode == 14: # UUID codec.encode_uuid (value) + elif typecode == 15: # FTABLE + codec.encode_table (value) else: raise ValueError ("Invalid type code: %d" % typecode) @@ -384,6 +386,8 @@ class managementClient: data = codec.decode_double () elif typecode == 14: # UUID data = codec.decode_uuid () + elif typecode == 15: # FTABLE + data = codec.decode_table () else: raise ValueError ("Invalid type code: %d" % typecode) return data |
