Issue #3106 - turn auto fragment off for WebSocketStatsTest

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
Lachlan Roberts 2019-03-01 11:29:41 +11:00 committed by lachan-roberts
parent 6094b3802f
commit 1160a8d08f
1 changed files with 1 additions and 0 deletions

View File

@ -108,6 +108,7 @@ public class WebSocketStatsTest
@Override
public void configure(WebSocketServletFactory factory)
{
factory.setAutoFragment(false);
factory.addMapping("/",(req, resp)->new EchoSocket());
}
}