summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2019-06-13 12:23:30 +0200
committerGitHub <noreply@github.com>2019-06-13 12:23:30 +0200
commitf8a7485121580753cc0f84d0a868045934680653 (patch)
tree924d918e8869d36219bd78c1f0414d9361646741 /controller-api
parent7991bd9706bf9ec04fef7239bb7cf4ef72bee12b (diff)
parent85badff5f9bc6c9cc5eb441dc2a5bfda88bb4d4b (diff)
Merge pull request #9775 from vespa-engine/mpolden/api-cleanup
Remove artificial distinction between cnames and rotation names
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServer.java2
1 files changed, 1 insertions, 1 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 03b3d586b73..0c6bee4073d 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
@@ -31,7 +31,7 @@ public interface ConfigServer {
PrepareResponse prepareResponse();
}
- PreparedApplication deploy(DeploymentId deployment, DeployOptions deployOptions, Set<String> rotationCnames, Set<String> rotationNames, byte[] content);
+ PreparedApplication deploy(DeploymentId deployment, DeployOptions deployOptions, Set<String> rotationNames, byte[] content);
void restart(DeploymentId deployment, Optional<Hostname> hostname);