Tests pass

For Tomcat, failures occur if HttpHandlerServlet buffer size is
significantly less than the Tomcat input buffer size.

Also on command line Jetty tests fail with port unavailable unless
the server from the Tomcat tests is also destroyed.
This commit is contained in:
Rossen Stoyanchev
2015-08-08 03:46:58 -04:00
parent 17b3db2988
commit e770b7de41
4 changed files with 8 additions and 7 deletions
@@ -34,7 +34,7 @@ import org.springframework.reactive.web.HttpHandler;
@WebServlet(asyncSupported = true )
public class HttpHandlerServlet extends HttpServlet {
private static final int BUFFER_SIZE = 4096;
private static final int BUFFER_SIZE = 8192;
private HttpHandler handler;