diff options
author | Artur Signell <artur@vaadin.com> | 2015-05-22 22:09:26 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2015-05-22 22:09:36 +0300 |
commit | 67bc52308036d72e96189e398b6cf2752a337b84 (patch) | |
tree | 4919ea04e59ca78823c541eaf09803084ab88817 /server/src | |
parent | dab615749386a089afc7965485942f667af154e4 (diff) | |
download | vaadin-framework-67bc52308036d72e96189e398b6cf2752a337b84.tar.gz vaadin-framework-67bc52308036d72e96189e398b6cf2752a337b84.zip |
Do not scan for WebSocketProtocol (#17807)
Change-Id: Ie8e4c827174542a3e7908f20a1cc2d90fab08917
Diffstat (limited to 'server/src')
-rw-r--r-- | server/src/com/vaadin/server/communication/PushRequestHandler.java | 2 |
1 files changed, 1 insertions, 1 deletions
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 |