This is an automated email from the ASF dual-hosted git repository.
chug pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git
The following commit(s) were added to refs/heads/main by this push:
new a5267f5 DISPATCH-2104: Fix display of plain number in qdstat
a5267f5 is described below
commit a5267f599ab00b2ca4e0c6583f0f7064ec36aa87
Author: Chuck Rolke <[email protected]>
AuthorDate: Fri May 7 09:29:36 2021 -0400
DISPATCH-2104: Fix display of plain number in qdstat
This closes #1193
---
tools/qdstat.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/qdstat.in b/tools/qdstat.in
index 0cba019..f94ed52 100755
--- a/tools/qdstat.in
+++ b/tools/qdstat.in
@@ -652,7 +652,7 @@ class BusManager(object):
row = []
row.append(al.address)
row.append(al.direction)
- row.append(al.phase)
+ row.append(PlainNum(al.phase))
row.append(al.externalAddress)
row.append(al.linkRef)
row.append(al.operStatus)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]