summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2021-04-12 19:27:29 +0200
committerGitHub <noreply@github.com>2021-04-12 19:27:29 +0200
commit33a9ed0266cea04238802d22d6b0228500260cb2 (patch)
tree0b53283dcaf0832e74f73f391d4d23cbc273e8a1 /controller-api
parent6b61b3875211b80140d43fec7fc02bf8a9bdbdc0 (diff)
parent88ebd231b8472bf099b400730f6d74e46871d0dd (diff)
Merge pull request #17373 from vespa-engine/jonmv/apache-hc5-client
Jonmv/apache hc5 client
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServer.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServer.java
index ed545dc35d1..81c4d7be483 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServer.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServer.java
@@ -39,7 +39,7 @@ public interface ConfigServer {
void reindex(DeploymentId deployment, List<String> clusterNames, List<String> documentTypes, boolean indexedOnly);
- Optional<ApplicationReindexing> getReindexing(DeploymentId deployment);
+ ApplicationReindexing getReindexing(DeploymentId deployment);
void disableReindexing(DeploymentId deployment);
@@ -47,7 +47,7 @@ public interface ConfigServer {
void restart(DeploymentId deployment, RestartFilter restartFilter);
- void deactivate(DeploymentId deployment) throws NotFoundException;
+ void deactivate(DeploymentId deployment);
boolean isSuspended(DeploymentId deployment);