aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server
diff options
context:
space:
mode:
authorJon Marius Venstad <jvenstad@yahoo-inc.com>2019-02-13 12:56:54 +0100
committerJon Marius Venstad <jvenstad@yahoo-inc.com>2019-02-13 12:56:54 +0100
commit7275a4718508a18d571795982e723d5ad05f809e (patch)
tree48bbf8f5b95ea15cfe743a504b037023e89b244d /controller-server
parent48ab81c9efd00717f0597be9791efd3a7a0e92f4 (diff)
Allow cloning an Issue in a different queue
Diffstat (limited to 'controller-server')
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/restapi/application/ApplicationApiHandler.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/restapi/application/ApplicationApiHandler.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/restapi/application/ApplicationApiHandler.java
index 1cac93a9971..67b68e55143 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/restapi/application/ApplicationApiHandler.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/restapi/application/ApplicationApiHandler.java
@@ -789,10 +789,7 @@ public class ApplicationApiHandler extends LoggingRequestHandler {
return new SlimeJsonResponse(slime);
}
- /**
- * Trigger deployment of the given Vespa version if a valid one is given, e.g., "7.8.9",
- * optionally pinning to that version if.
- */
+ /** Trigger deployment of the given Vespa version if a valid one is given, e.g., "7.8.9". */
private HttpResponse deployPlatform(String tenantName, String applicationName, String versionString, boolean pin) {
ApplicationId id = ApplicationId.from(tenantName, applicationName, "default");
StringBuilder response = new StringBuilder();