Skip to content

Commit

Permalink
Merge branch '2.7.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed Dec 22, 2022
2 parents 6367a8c + 60a75e3 commit 9562a2c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ void runApplication() throws IOException {
}

private void awaitLogging(Process process) {
long end = System.currentTimeMillis() + 30000;
long end = System.currentTimeMillis() + 60000;
String expectedLogging = this.expectedLogging.get();
while (System.currentTimeMillis() < end) {
for (String line : outputLines()) {
Expand All @@ -143,7 +143,7 @@ private void awaitLogging(Process process) {
throw new IllegalStateException("Process exited before '" + expectedLogging + "' was logged");
}
}
throw new IllegalStateException("'" + expectedLogging + "' was not logged within 30 seconds");
throw new IllegalStateException("'" + expectedLogging + "' was not logged within 60 seconds");
}

private List<String> outputLines() {
Expand Down

0 comments on commit 9562a2c

Please sign in to comment.