Skip to content

Commit

Permalink
Merge pull request #1461 from fl4via/UNDERTOW-2259
Browse files Browse the repository at this point in the history
[UNDERTOW-2259] Increase the timeout for LoadBalancerConnectionPoolin…
  • Loading branch information
fl4via committed Apr 12, 2023
2 parents 56d4ef3 + 8480203 commit d62a27f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public void run() {
Assert.fail("there should still be a connection");
}
}
long end = System.currentTimeMillis() + (TTL * 3);
long end = System.currentTimeMillis() + (TTL * 30);
while (!activeConnections.isEmpty() && System.currentTimeMillis() < end) {
Thread.sleep(100);
}
Expand Down

0 comments on commit d62a27f

Please sign in to comment.