diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2014-03-03 13:35:12 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-03-03 13:33:21 +0000 |
commit | 06d0cf4daa414eca3c2a73df8171706ca7012213 (patch) | |
tree | 8b0037a32e21f2df7fcfd3b50ccb1415964229e0 /client/src | |
parent | 6249518e8b84ce9d8809374a652610600f13f0a6 (diff) | |
download | vaadin-framework-06d0cf4daa414eca3c2a73df8171706ca7012213.tar.gz vaadin-framework-06d0cf4daa414eca3c2a73df8171706ca7012213.zip |
Workaround Streaming Push unreliabilities (#13415)
Change-Id: I5e946b365e22e71a0c13606fcd159d1ce7c82925
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/com/vaadin/client/communication/AtmospherePushConnection.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/src/com/vaadin/client/communication/AtmospherePushConnection.java b/client/src/com/vaadin/client/communication/AtmospherePushConnection.java index 95584412cd..f9bff8199e 100644 --- a/client/src/com/vaadin/client/communication/AtmospherePushConnection.java +++ b/client/src/com/vaadin/client/communication/AtmospherePushConnection.java @@ -447,6 +447,7 @@ public class AtmospherePushConnection implements PushConnection { /*-{ return { transport: 'websocket', + maxStreamingLength: 1000000, fallbackTransport: 'streaming', contentType: 'application/json; charset=UTF-8', reconnectInterval: 5000, |