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 @@ -132,7 +132,7 @@ void runApplication() throws IOException {
132
132
}
133
133
134
134
private void awaitLogging (Process process ) {
135
- long end = System .currentTimeMillis () + 30000 ;
135
+ long end = System .currentTimeMillis () + 60000 ;
136
136
String expectedLogging = this .expectedLogging .get ();
137
137
List <String > outputLines = Collections .emptyList ();
138
138
while (System .currentTimeMillis () < end ) {
@@ -147,7 +147,7 @@ private void awaitLogging(Process process) {
147
147
}
148
148
}
149
149
StringBuilder message = new StringBuilder (
150
- "After 30 seconds '" + expectedLogging + "' had not be logged in the following output:\n \n " );
150
+ "After 60 seconds '" + expectedLogging + "' had not be logged in the following output:\n \n " );
151
151
outputLines .forEach ((line ) -> message .append (line ).append ("\n " ));
152
152
throw new IllegalStateException (message .toString ());
153
153
}
You can’t perform that action at this time.
0 commit comments