File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
buildSrc/src/main/java/org/springframework/boot/build/docs Expand file tree Collapse file tree 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 {
132132 }
133133
134134 private void awaitLogging (Process process ) {
135- long end = System .currentTimeMillis () + 30000 ;
135+ long end = System .currentTimeMillis () + 60000 ;
136136 String expectedLogging = this .expectedLogging .get ();
137137 List <String > outputLines = Collections .emptyList ();
138138 while (System .currentTimeMillis () < end ) {
@@ -147,7 +147,7 @@ private void awaitLogging(Process process) {
147147 }
148148 }
149149 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 " );
151151 outputLines .forEach ((line ) -> message .append (line ).append ("\n " ));
152152 throw new IllegalStateException (message .toString ());
153153 }
You can’t perform that action at this time.
0 commit comments