diff options
-rw-r--r-- | server/src/com/vaadin/server/communication/PushRequestHandler.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/src/com/vaadin/server/communication/PushRequestHandler.java b/server/src/com/vaadin/server/communication/PushRequestHandler.java index d0367d0bed..74165a4988 100644 --- a/server/src/com/vaadin/server/communication/PushRequestHandler.java +++ b/server/src/com/vaadin/server/communication/PushRequestHandler.java @@ -98,7 +98,9 @@ public class PushRequestHandler implements RequestHandler, "true"); atmosphere.addInitParameter(ApplicationConfig.MESSAGE_DELIMITER, String.valueOf(PushConstants.MESSAGE_DELIMITER)); - + atmosphere.addInitParameter( + ApplicationConfig.DROP_ACCESS_CONTROL_ALLOW_ORIGIN_HEADER, + "false"); // Disable heartbeat (it does not emit correct events client side) // https://github.com/Atmosphere/atmosphere-javascript/issues/141 atmosphere.addInitParameter( |