Bläddra i källkod

increase container healthcheck timeout (#14599)

xiangzihao 1 år sedan
förälder
incheckning
311a715123

+ 1 - 1
dolphinscheduler-e2e/dolphinscheduler-e2e-core/src/main/java/org/apache/dolphinscheduler/e2e/core/DolphinSchedulerExtension.java

@@ -203,7 +203,7 @@ final class DolphinSchedulerExtension implements BeforeAllCallback, AfterAllCall
             .withTailChildContainers(true)
             .withExposedService("dolphinscheduler_1", 12345)
             .withLogConsumer("dolphinscheduler_1", outputFrame -> LOGGER.info(outputFrame.getUtf8String()))
-            .waitingFor("dolphinscheduler_1", Wait.forHealthcheck().withStartupTimeout(Duration.ofSeconds(180)));
+            .waitingFor("dolphinscheduler_1", Wait.forHealthcheck().withStartupTimeout(Duration.ofSeconds(300)));
 
         return compose;
     }