summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
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 15ee3724b6c..1dff20c77be 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
@@ -29,11 +29,11 @@ public interface ConfigServer {
PreparedApplication deploy(DeploymentId deployment, DeployOptions deployOptions, Set<String> rotationCnames, Set<String> rotationNames, byte[] content);
- void restart(DeploymentId deployment, Optional<Hostname> hostname) throws NoInstanceException;
+ void restart(DeploymentId deployment, Optional<Hostname> hostname);
void deactivate(DeploymentId deployment) throws NoInstanceException;
- boolean isSuspended(DeploymentId deployment) throws NoInstanceException;
+ boolean isSuspended(DeploymentId deployment);
ApplicationView getApplicationView(String tenantName, String applicationName, String instanceName, String environment, String region);