mirror of https://github.com/apache/activemq.git
Merge pull request #1113 from jbonofre/AMQ-9383
AMQ-9383: Copy transport options before sending in introspection setter
This commit is contained in:
commit
d23da10da8
|
@ -159,7 +159,7 @@ public class WSServlet extends JettyWebSocketServlet implements BrokerServiceAwa
|
|||
|
||||
proxy = new WSTransportProxy(remoteAddress, transport);
|
||||
proxy.setPeerCertificates(request.getCertificates());
|
||||
proxy.setTransportOptions(transportOptions);
|
||||
proxy.setTransportOptions(new HashMap<>(transportOptions));
|
||||
|
||||
response.setAcceptedSubProtocol(proxy.getSubProtocol());
|
||||
} catch (Exception e) {
|
||||
|
|
Loading…
Reference in New Issue