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

(cherry picked from commit f4be8a6806)
This commit is contained in:
JB Onofré 2023-11-08 15:01:17 +01:00
parent f3c893ef48
commit 526c2b07ba
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ public class WSServlet extends WebSocketServlet implements BrokerServiceAware {
proxy = new WSTransportProxy(remoteAddress, transport);
proxy.setPeerCertificates(request.getCertificates());
proxy.setTransportOptions(transportOptions);
proxy.setTransportOptions(new HashMap<>(transportOptions));
response.setAcceptedSubProtocol(proxy.getSubProtocol());
} catch (Exception e) {