@@ -54,7 +54,7 @@ public void handleShouldSetMultipartConfig() throws Exception {
5454 .expect (wsStopTimeout )
5555 .run (unit -> {
5656 new JettyHandler (unit .get (HttpHandler .class ), unit .get (WebSocketServerFactory .class ),
57- "target" )
57+ "target" , - 1 )
5858 .handle ("/" , unit .get (Request .class ),
5959 unit .get (HttpServletRequest .class ),
6060 unit .get (HttpServletResponse .class ));
@@ -84,7 +84,7 @@ public void handleShouldIgnoreMultipartConfig() throws Exception {
8484 .expect (wsStopTimeout )
8585 .run (unit -> {
8686 new JettyHandler (unit .get (HttpHandler .class ), unit .get (WebSocketServerFactory .class ),
87- "target" )
87+ "target" , - 1 )
8888 .handle ("/" , unit .get (Request .class ),
8989 unit .get (HttpServletRequest .class ),
9090 unit .get (HttpServletResponse .class ));
@@ -129,7 +129,7 @@ public void handleWsUpgrade() throws Exception {
129129 .expect (wsStopTimeout )
130130 .run (unit -> {
131131 new JettyHandler (unit .get (HttpHandler .class ), unit .get (WebSocketServerFactory .class ),
132- "target" )
132+ "target" , - 1 )
133133 .handle ("/" , unit .get (Request .class ),
134134 unit .get (HttpServletRequest .class ),
135135 unit .get (HttpServletResponse .class ));
@@ -175,7 +175,7 @@ public void handleThrowUnsupportedOperationExceptionWhenWsIsMissing() throws Exc
175175 .expect (wsStopTimeout )
176176 .run (unit -> {
177177 new JettyHandler (unit .get (HttpHandler .class ), unit .get (WebSocketServerFactory .class ),
178- "target" )
178+ "target" , - 1 )
179179 .handle ("/" , unit .get (Request .class ),
180180 unit .get (HttpServletRequest .class ),
181181 unit .get (HttpServletResponse .class ));
@@ -217,7 +217,7 @@ public void handleThrowUnsupportedOperationExceptionOnNoWebSocketRequest() throw
217217 .expect (wsStopTimeout )
218218 .run (unit -> {
219219 new JettyHandler (unit .get (HttpHandler .class ), unit .get (WebSocketServerFactory .class ),
220- "target" )
220+ "target" , - 1 )
221221 .handle ("/" , unit .get (Request .class ),
222222 unit .get (HttpServletRequest .class ),
223223 unit .get (HttpServletResponse .class ));
@@ -261,7 +261,7 @@ public void handleThrowUnsupportedOperationExceptionOnHankshakeRejection() throw
261261 .expect (wsStopTimeout )
262262 .run (unit -> {
263263 new JettyHandler (unit .get (HttpHandler .class ), unit .get (WebSocketServerFactory .class ),
264- "target" )
264+ "target" , - 1 )
265265 .handle ("/" , unit .get (Request .class ),
266266 unit .get (HttpServletRequest .class ),
267267 unit .get (HttpServletResponse .class ));
@@ -295,7 +295,7 @@ public void handleThrowUnsupportedOperationExceptionOnWrongType() throws Excepti
295295 .expect (wsStopTimeout )
296296 .run (unit -> {
297297 new JettyHandler (unit .get (HttpHandler .class ), unit .get (WebSocketServerFactory .class ),
298- "target" )
298+ "target" , - 1 )
299299 .handle ("/" , unit .get (Request .class ),
300300 unit .get (HttpServletRequest .class ),
301301 unit .get (HttpServletResponse .class ));
@@ -332,7 +332,7 @@ public void handleShouldReThrowServletException() throws Exception {
332332 .expect (wsStopTimeout )
333333 .run (unit -> {
334334 new JettyHandler (dispatcher , unit .get (WebSocketServerFactory .class ),
335- "target" )
335+ "target" , - 1 )
336336 .handle ("/" , unit .get (Request .class ),
337337 unit .get (HttpServletRequest .class ),
338338 unit .get (HttpServletResponse .class ));
@@ -366,7 +366,7 @@ public void handleShouldReThrowIOException() throws Exception {
366366 .expect (wsStopTimeout )
367367 .run (unit -> {
368368 new JettyHandler (dispatcher , unit .get (WebSocketServerFactory .class ),
369- "target" )
369+ "target" , - 1 )
370370 .handle ("/" , unit .get (Request .class ),
371371 unit .get (HttpServletRequest .class ),
372372 unit .get (HttpServletResponse .class ));
@@ -400,7 +400,7 @@ public void handleShouldReThrowIllegalArgumentException() throws Exception {
400400 .expect (wsStopTimeout )
401401 .run (unit -> {
402402 new JettyHandler (dispatcher , unit .get (WebSocketServerFactory .class ),
403- "target" )
403+ "target" , - 1 )
404404 .handle ("/" , unit .get (Request .class ),
405405 unit .get (HttpServletRequest .class ),
406406 unit .get (HttpServletResponse .class ));
@@ -434,7 +434,7 @@ public void handleShouldReThrowIllegalStateException() throws Exception {
434434 .expect (wsStopTimeout )
435435 .run (unit -> {
436436 new JettyHandler (dispatcher , unit .get (WebSocketServerFactory .class ),
437- "target" )
437+ "target" , - 1 )
438438 .handle ("/" , unit .get (Request .class ),
439439 unit .get (HttpServletRequest .class ),
440440 unit .get (HttpServletResponse .class ));
0 commit comments