SslTransport doesn't set the client certificate chain as transportContext
-------------------------------------------------------------------------
Key: AMQ-1330
URL: https://issues.apache.org/activemq/browse/AMQ-1330
Project: ActiveMQ
Issue Type: Bug
Components: Transport
Affects Versions: 4.1.1
Reporter: Erik Jõgi
org.apache.activemq.transport.tcp.SslTransport is supposed to override the
doConsume() method of TransportSupport and set the client certificate chain as
transportContext.
However the method signature is incorrect - instead of overriding:
public void doConsume(Object command)
it defines a new method:
public void doConsume(Command command)
which is never called.
So it is fixed very easily - just change Command to Object in the method
signature.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.