From 67bc52308036d72e96189e398b6cf2752a337b84 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Fri, 22 May 2015 22:09:26 +0300 Subject: [PATCH] Do not scan for WebSocketProtocol (#17807) Change-Id: Ie8e4c827174542a3e7908f20a1cc2d90fab08917 --- .../src/com/vaadin/server/communication/PushRequestHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/com/vaadin/server/communication/PushRequestHandler.java b/server/src/com/vaadin/server/communication/PushRequestHandler.java index 9e25f1d8ff..c01c74e5cd 100644 --- a/server/src/com/vaadin/server/communication/PushRequestHandler.java +++ b/server/src/com/vaadin/server/communication/PushRequestHandler.java @@ -145,7 +145,7 @@ public class PushRequestHandler implements RequestHandler, */ static AtmosphereFramework initAtmosphere( final ServletConfig vaadinServletConfig) { - AtmosphereFramework atmosphere = new AtmosphereFramework() { + AtmosphereFramework atmosphere = new AtmosphereFramework(false, false) { @Override protected void analytics() { // Overridden to disable version number check -- 2.39.5