]> source.dussan.org Git - vaadin-framework.git/commit
Decrease the websocket buffer size due to a Jetty 9.1 issue (#13087)
authorJohannes Dahlström <johannesd@vaadin.com>
Mon, 16 Dec 2013 11:08:02 +0000 (13:08 +0200)
committerVaadin Code Review <review@vaadin.com>
Mon, 16 Dec 2013 17:29:05 +0000 (17:29 +0000)
commit8245079252865d19a929c86bfd67cbe139259f18
tree3708868178dfdd891771e5cf24f4cf22bee4b7a8
parent681864fee3c95dd281493f881db276b7b7abe87d
Decrease the websocket buffer size due to a Jetty 9.1 issue (#13087)

Jetty 9.1 throws if InputBufferSize is set to greater than or equal to
MaxTextMessageBufferSize. We cannot simply increase the value of the latter
because Atmosphere sets the former first. Thus, its value must be set to
less than 32768 (the default for MaxTextMessageBufferSize). This should not
cause problems with regard to performance; the original figure of 65536
was more or less an arbitrary choice.

Change-Id: If9596fc2bffdd14e8c1f31ff4b9b10d6685e01ed
shared/src/com/vaadin/shared/communication/PushConstants.java