Ted, I did that before applying the patch
Carl.
Ted Ross (JIRA) wrote:
[ https://issues.apache.org/jira/browse/QPID-820?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12573456#action_12573456 ]
Ted Ross commented on QPID-820:
-------------------------------
The following additional patch is needed to support Python 2.4:
for file: cpp/managementgen/schema.py (left is old, right is new)
24c24
< import hashlib
---
import md5
588c588
< self.md5Sum = hashlib.md5 ()
---
self.md5Sum = md5.new ()
Management infrastructure update
--------------------------------
Key: QPID-820
URL: https://issues.apache.org/jira/browse/QPID-820
Project: Qpid
Issue Type: Improvement
Components: C++ Broker, Python Client
Reporter: Ted Ross
Priority: Minor
Attachments: qpid-patch25.diff
Updates to the management infrastructure for extensibility and to prepare for
the remote management agent.
This patch includes a significant change to the API in
python/qpid/management.py. The change makes the management of multiple brokers
more efficient.