diff options
author | Ted Ross <tross@apache.org> | 2010-06-09 15:16:22 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2010-06-09 15:16:22 +0000 |
commit | ee9c9673fb8ff702f05bee88048555c8409948d0 (patch) | |
tree | 75f2a5ed5bd8d46aee55c731ad43efd5fe6c9e95 /extras | |
parent | a2d87cb4198266051149b21a2f0f7621a29c5d9d (diff) | |
download | qpid-python-ee9c9673fb8ff702f05bee88048555c8409948d0.tar.gz |
Update the current and deleted timestamps in the "mergeUpdate" method.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@953039 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'extras')
-rw-r--r-- | extras/qmf/src/py/qmf/console.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extras/qmf/src/py/qmf/console.py b/extras/qmf/src/py/qmf/console.py index 6cfcdc9e31..02c5ff1c6a 100644 --- a/extras/qmf/src/py/qmf/console.py +++ b/extras/qmf/src/py/qmf/console.py @@ -279,6 +279,8 @@ class Object(object): self._properties = newer.getProperties() if len(newer.getStatistics()) > 0: self._statistics = newer.getStatistics() + self._currentTime = newer._currentTime + self._deleteTime = newer._deleteTime def update(self): """ Contact the agent and retrieve the lastest property and statistic values for this object. """ |