From efd035d01dd87dd146f3fc6aacabc8c28b10316d Mon Sep 17 00:00:00 2001 From: Ted Ross Date: Mon, 5 Dec 2011 21:00:01 +0000 Subject: QPID-3660 - qpid-stat -c columns for "msgIn" and "msgOut" actually display frames, not messages git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1210624 13f79535-47bb-0310-9956-ffa450edef68 --- tools/src/py/qpid-stat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/src/py/qpid-stat b/tools/src/py/qpid-stat index ce3f5d1ef5..7872936e98 100755 --- a/tools/src/py/qpid-stat +++ b/tools/src/py/qpid-stat @@ -316,8 +316,8 @@ class BrokerManager(Console): row.append(broker.getCurrentTime() - conn.getTimestamps()[1]) idle = broker.getCurrentTime() - conn.getTimestamps()[0] row.append(broker.getCurrentTime() - conn.getTimestamps()[0]) - row.append(conn.framesFromClient) - row.append(conn.framesToClient) + row.append(conn.msgsFromClient) + row.append(conn.msgsToClient) rows.append(row) title = "Connections" if self.cluster: -- cgit v1.2.1