Skip to content

Commit

Permalink
Increase number of retries before failing (#813)
Browse files Browse the repository at this point in the history
  • Loading branch information
melix authored Jan 10, 2025
1 parent 96ab711 commit 3e34481
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ private static void waitForServerToBeAvailable(ServerFactory serverFactory,
Path portFilePath) {
Integer port = explicitPort;
if (explicitPort == null) {
int retries = 4;
int retries = 12;
long dur = STARTUP_TIME_WAIT_MS;
while (--retries > 0 && !Files.exists(portFilePath)) {
try {
Expand Down

0 comments on commit 3e34481

Please sign in to comment.