summaryrefslogtreecommitdiffstats
path: root/orchestrator-restapi
diff options
context:
space:
mode:
authorHåkon Hallingstad <hakon@oath.com>2018-10-23 15:44:56 +0200
committerHåkon Hallingstad <hakon@oath.com>2018-10-23 15:44:56 +0200
commit629cfc4d314f761ca632ae61639905cc9d1e3fa6 (patch)
tree7281f65a07909f1185414e20e6bce4d887496057 /orchestrator-restapi
parent123c5a40b52018090a9a7d36ab2699b85bd12328 (diff)
Enforce CC timeouts in Orchestrator 2
Diffstat (limited to 'orchestrator-restapi')
-rw-r--r--orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/HostSuspensionApi.java8
1 files changed, 2 insertions, 6 deletions
diff --git a/orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/HostSuspensionApi.java b/orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/HostSuspensionApi.java
index 603d6a1adac..9535096af4f 100644
--- a/orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/HostSuspensionApi.java
+++ b/orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/HostSuspensionApi.java
@@ -22,13 +22,9 @@ public interface HostSuspensionApi {
String PATH_PREFIX = "/v1/suspensions/hosts";
/**
- * Ask for permission to temporarily suspend all services on a set of hosts.
+ * Ask for permission to temporarily suspend all services on a set of hosts (nodes).
*
- * See HostApi::suspend for semantics of suspending a host.
- *
- * On failure, it tries to resume ALL hosts. It needs to try to resume all hosts because any or all hosts
- * may have been suspended in an earlier attempt. Ending with resumption of all hosts makes sure other
- * batch-requests for suspension of hosts succeed.
+ * See HostApi::suspend for semantics of suspending a node.
*/
@PUT
@Path("/{hostname}")