mirror of https://github.com/apache/activemq.git
https://issues.apache.org/activemq/browse/AMQ-2764 - additional patch that makes transport options persist conntecotr restart
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1005033 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
06d6e08f48
commit
90c597eda6
|
@ -193,7 +193,8 @@ public class HttpTunnelServlet extends HttpServlet {
|
||||||
clients.put(clientID, answer);
|
clients.put(clientID, answer);
|
||||||
Transport transport = answer;
|
Transport transport = answer;
|
||||||
try {
|
try {
|
||||||
transport = transportFactory.serverConfigure(answer, null, transportOptions);
|
HashMap options = new HashMap(transportOptions);
|
||||||
|
transport = transportFactory.serverConfigure(answer, null, options);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
IOExceptionSupport.create(e);
|
IOExceptionSupport.create(e);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue