summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2023-01-27 14:05:29 +0100
committerGitHub <noreply@github.com>2023-01-27 14:05:29 +0100
commitb6e493d2eba1e35bd07de4eb380299e2d21ec1bc (patch)
tree6ad92faef7523f644ee61575d37ee474964f3cb9
parent3683c87e5fe6fa721d5d3744f519fe5ab6125df0 (diff)
parent580c9661ba6edd521a1f524ae3202f17782fe9c9 (diff)
Merge pull request #25764 from vespa-engine/bratseth/clearer-message
Clearer message
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java
index 7da61f9bc63..1c5f98cb7f9 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java
@@ -275,7 +275,8 @@ public class InternalStepRunner implements StepRunner {
switch (e.type()) {
case CERT_NOT_AVAILABLE:
// Same as CERTIFICATE_NOT_READY above, only from the controller
- logger.log("Validating CA signed certificate requested for app: not yet available");
+ logger.log("Creating a CA signed certificate for the application. " +
+ "This may take up to " + timeouts.endpointCertificate() + " on first deployment.");
if (startTime.plus(timeouts.endpointCertificate()).isBefore(controller.clock().instant())) {
logger.log(WARNING, "CA signed certificate for app not available within " +
timeouts.endpointCertificate() + ": " + Exceptions.toMessageString(e));