Skip to content

Commit 9562a2c

Browse files
committed
Merge branch '2.7.x'
2 parents 6367a8c + 60a75e3 commit 9562a2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

buildSrc/src/main/java/org/springframework/boot/build/docs/ApplicationRunner.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ void runApplication() throws IOException {
131131
}
132132

133133
private void awaitLogging(Process process) {
134-
long end = System.currentTimeMillis() + 30000;
134+
long end = System.currentTimeMillis() + 60000;
135135
String expectedLogging = this.expectedLogging.get();
136136
while (System.currentTimeMillis() < end) {
137137
for (String line : outputLines()) {
@@ -143,7 +143,7 @@ private void awaitLogging(Process process) {
143143
throw new IllegalStateException("Process exited before '" + expectedLogging + "' was logged");
144144
}
145145
}
146-
throw new IllegalStateException("'" + expectedLogging + "' was not logged within 30 seconds");
146+
throw new IllegalStateException("'" + expectedLogging + "' was not logged within 60 seconds");
147147
}
148148

149149
private List<String> outputLines() {

0 commit comments

Comments
 (0)