Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 936281 Details for
Bug 1109873
"qpid-stat -c does not show clients names connected from Windows
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
Revised patch for qpid-stat to replace empty fields with "unknown"
qpid-stat.patch (text/plain), 1.49 KB, created by
Irina Boverman
on 2014-09-10 18:33:16 UTC
(
hide
)
Description:
Revised patch for qpid-stat to replace empty fields with "unknown"
Filename:
MIME Type:
Creator:
Irina Boverman
Created:
2014-09-10 18:33:16 UTC
Size:
1.49 KB
patch
obsolete
>diff --git a/qpid/tools/src/py/qpid-stat b/qpid/tools/src/py/qpid-stat >index d31dc93..d010b9d 100755 >--- a/qpid/tools/src/py/qpid-stat >+++ b/qpid/tools/src/py/qpid-stat >@@ -213,10 +213,13 @@ class BrokerManager: > for conn in connections: > row = [] > row.append(conn.address) >- row.append(conn.remoteProcessName) >+ if conn.remoteProcessName: row.append(conn.remoteProcessName) >+ else: row.append("unknown") > row.append(conn.remotePid) >- row.append(conn.saslMechanism) >- row.append(conn.authIdentity) >+ if conn.saslMechanism: row.append(conn.saslMechanism) >+ else: row.append("unknown") >+ if conn.authIdentity: row.append(conn.authIdentity) >+ else: row.append("unknown") > row.append(broker.getUpdateTime() - conn.getCreateTime()) > row.append(broker.getUpdateTime() - conn.getUpdateTime()) > row.append(conn.msgsFromClient) >@@ -395,7 +398,8 @@ class BrokerManager: > session = sessions[s.sessionRef] > connection = connections[session.connectionRef] > row.append(connection.address) >- row.append(connection.remoteProcessName) >+ if connection.remoteProcessName: row.append(connection.remoteProcessName) >+ else: row.append("unknown") > row.append(connection.remotePid) > row.append(s.browsing) > row.append(s.acknowledged)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 1109873
:
912136
|
936281
|
939372