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:
Bosanac Dejan 2010-10-06 13:42:05 +00:00
parent 06d6e08f48
commit 90c597eda6
1 changed files with 2 additions and 1 deletions

View File

@ -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);
} }