summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2022-01-19 17:09:28 +0100
committerHarald Musum <musum@yahooinc.com>2022-01-19 17:09:28 +0100
commit7686e58bf2d0dce742f6d78a83e1882934e52c4a (patch)
tree512432f0232a5d86ffc88a2ce2e4f12419c0296c /controller-api
parentff2e13f72dc3719dafbd6f2acbc94ee53ee6259e (diff)
Handle error code CONFIG_NOT_CONVERGED when deploying
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServerException.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServerException.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServerException.java
index 9d51c5ca9d1..f0b681fd9c9 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServerException.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServerException.java
@@ -3,7 +3,6 @@ package com.yahoo.vespa.hosted.controller.api.integration.configserver;
import com.yahoo.slime.Inspector;
import com.yahoo.slime.SlimeUtils;
-import org.apache.hc.core5.http.ClassicHttpRequest;
import java.util.stream.Stream;
@@ -41,7 +40,8 @@ public class ConfigServerException extends RuntimeException {
PARENT_HOST_NOT_READY,
CERTIFICATE_NOT_READY,
LOAD_BALANCER_NOT_READY,
- INCOMPLETE_RESPONSE
+ INCOMPLETE_RESPONSE,
+ CONFIG_NOT_CONVERGED
}
public static ConfigServerException readException(byte[] body, String context) {