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 912136 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.
[patch]
Patch to replace empty fields with "unknown".
qpid-stat.patch (text/plain), 1.38 KB, created by
Irina Boverman
on 2014-06-25 14:51:24 UTC
(
hide
)
Description:
Patch to replace empty fields with "unknown".
Filename:
MIME Type:
Creator:
Irina Boverman
Created:
2014-06-25 14:51:24 UTC
Size:
1.38 KB
patch
obsolete
>diff --git a/qpid/tools/src/py/qpid-stat b/qpid/tools/src/py/qpid-stat >index d3c2820..6c6d87f 100755 >--- a/qpid/tools/src/py/qpid-stat >+++ b/qpid/tools/src/py/qpid-stat >@@ -274,10 +274,10 @@ class BrokerManager: > for conn in connections: > row = [] > row.append(conn.address) >- row.append(conn.remoteProcessName) >+ row.append(conn.remoteProcessName if conn.remoteProcessName else "unknown") > row.append(conn.remotePid) >- row.append(conn.saslMechanism) >- row.append(conn.authIdentity) >+ row.append(conn.saslMechanism if conn.saslMechanism else "unknown") >+ row.append(conn.authIdentity if conn.authIdentity else "unknown") > row.append(broker.getUpdateTime() - conn.getCreateTime()) > row.append(broker.getUpdateTime() - conn.getUpdateTime()) > row.append(conn.msgsFromClient) >@@ -456,7 +456,7 @@ class BrokerManager: > session = sessions[s.sessionRef] > connection = connections[session.connectionRef] > row.append(connection.address) >- row.append(connection.remoteProcessName) >+ row.append(connection.remoteProcessName if connection.remoteProcessName else "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 Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1109873
:
912136
|
936281
|
939372