File tree 1 file changed +2
-2
lines changed
buildSrc/src/main/java/org/springframework/boot/build/docs
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ void runApplication() throws IOException {
131
131
}
132
132
133
133
private void awaitLogging (Process process ) {
134
- long end = System .currentTimeMillis () + 30000 ;
134
+ long end = System .currentTimeMillis () + 60000 ;
135
135
String expectedLogging = this .expectedLogging .get ();
136
136
while (System .currentTimeMillis () < end ) {
137
137
for (String line : outputLines ()) {
@@ -143,7 +143,7 @@ private void awaitLogging(Process process) {
143
143
throw new IllegalStateException ("Process exited before '" + expectedLogging + "' was logged" );
144
144
}
145
145
}
146
- throw new IllegalStateException ("'" + expectedLogging + "' was not logged within 30 seconds" );
146
+ throw new IllegalStateException ("'" + expectedLogging + "' was not logged within 60 seconds" );
147
147
}
148
148
149
149
private List <String > outputLines () {
You can’t perform that action at this time.
0 commit comments