AMQ-9383: Copy transport options before sending in introspection setter

This commit is contained in:
JB Onofré 2023-11-08 15:01:17 +01:00
parent 9da90c71ec
commit f4be8a6806
1 changed files with 1 additions and 1 deletions

View File

@ -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) {