From 4af1ed1d8d0cee6b1503d42161519971dee2d7ac Mon Sep 17 00:00:00 2001 From: stanislav-shymov Date: Thu, 26 Sep 2024 22:28:13 +0300 Subject: [PATCH] update of the changelog --- doc/changelog.md | 4 ++-- src/main/java/io/fabric8/maven/docker/StartMojo.java | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/changelog.md b/doc/changelog.md index 8f9779d9d..66ed7dc19 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -1,8 +1,8 @@ # ChangeLog * **0.46-SNAPSHOT**: - Make copy docker-buildx binary to temporary config directory work on windows too ([1819](https://github.com/fabric8io/docker-maven-plugin/pull/1819)) - - Docker-compose healthcheck configuration support - - Docker container wait timeout default value made configurable using defaultContainerWaitTimeout configuration option + - Docker-compose healthcheck configuration support ([1825](https://github.com/fabric8io/docker-maven-plugin/pull/1825)) + - Docker container wait timeout default value made configurable using defaultContainerWaitTimeout configuration option ([1825](https://github.com/fabric8io/docker-maven-plugin/pull/1825)) * **0.45.0 (2024-07-27)**: - Automatically create parent directories of portPropertyFile path ([1761](https://github.com/fabric8io/docker-maven-plugin/pull/1761)) diff --git a/src/main/java/io/fabric8/maven/docker/StartMojo.java b/src/main/java/io/fabric8/maven/docker/StartMojo.java index 0e175c562..2d395af2e 100644 --- a/src/main/java/io/fabric8/maven/docker/StartMojo.java +++ b/src/main/java/io/fabric8/maven/docker/StartMojo.java @@ -100,9 +100,10 @@ public class StartMojo extends AbstractDockerMojo { protected boolean autoCreateCustomNetworks; /** - * Global across all the containers default wait time is milliseconds. + * Overrides the default across all the containers wait time is milliseconds. * Overriding that property might become particularly useful when docker-compose config defines - * the healthchecks, but some containers require more time to become healthy. + * the healthchecks, but the default wait timeout {@link io.fabric8.maven.docker.wait.WaitUtil#DEFAULT_MAX_WAIT} + * is too short for some containers to become healthy. */ @Parameter(property = DOCKER_DEFAULT_CONTAINER_WAIT_TIMEOUT, defaultValue = "10000") protected int defaultContainerWaitTimeout = 10000;