Skip to content

Commit 953adcc

Browse files
authored
Merge pull request #1460 from java-codehunger/rootcause
[UNDERTOW-2231] Reducing the chance of flaky test failure
2 parents c342da9 + 58565da commit 953adcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/test/java/io/undertow/server/handlers/proxy/AbstractLoadBalancingProxyTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ public void testLoadSharedWithServerShutdown() throws Exception {
203203
resultString.append(HttpClientUtils.readResponse(result));
204204
resultString.append(' ');
205205
server1.stop();
206-
Thread.sleep(600);
206+
Thread.sleep(1200);
207207
get = new HttpGet(DefaultServer.getDefaultServerURL() + "/name");
208208
result = client.execute(get);
209209
Assert.assertEquals("Test failed with i=" + i, StatusCodes.OK, result.getStatusLine().getStatusCode());

0 commit comments

Comments
 (0)