target source:
https://raw.githubusercontent.com/apache/activemq/refs/tags/activemq-5.19.8/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/ConnectionView.java
issue:
At getWireFormatInfo() ,
If the "connection" is null, there would be some notice like this.
@OverRide
public String getWireFormatInfo() {
if (connection instanceof TransportConnection) {
WireFormatInfo info = ((TransportConnection) connection).getRemoteWireFormatInfo(); # << mod
return (info != null) ? info.toString() : "WireFormatInfo not available"; # << mod
}
return "WireFormatInfo not available";
}
target source:
https://raw.githubusercontent.com/apache/activemq/refs/tags/activemq-5.19.8/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/ConnectionView.java
issue:
At getWireFormatInfo() ,
If the "connection" is null, there would be some notice like this.
@OverRide
public String getWireFormatInfo() {
if (connection instanceof TransportConnection) {
WireFormatInfo info = ((TransportConnection) connection).getRemoteWireFormatInfo(); # << mod
return (info != null) ? info.toString() : "WireFormatInfo not available"; # << mod
}
return "WireFormatInfo not available";
}