summaryrefslogtreecommitdiffstats
path: root/controller-server
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2020-02-28 09:28:14 +0100
committerGitHub <noreply@github.com>2020-02-28 09:28:14 +0100
commit0efd91857e90409635a0600e542cfa8bdc5fdb7a (patch)
tree47568dc7fa19392338850e1e06eea50461aa85bb /controller-server
parentf49ad07b9fd1ac272e28e384fadb246025aedfff (diff)
Correct javadoc
Co-Authored-By: Jon Marius Venstad <jonmv@users.noreply.github.com>
Diffstat (limited to 'controller-server')
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/RoutingController.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/RoutingController.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/RoutingController.java
index 896fe3bfbee..0073fbdce34 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/RoutingController.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/RoutingController.java
@@ -115,7 +115,7 @@ public class RoutingController {
return EndpointList.copyOf(endpoints);
}
- /** Returns all non-global endpoints for given deployments, grouped by their cluster ID and zone */
+ /** Returns all non-global endpoints and corresponding cluster IDs for given deployments, grouped by their zone */
public Map<ZoneId, Map<URI, ClusterSpec.Id>> zoneEndpointsOf(Collection<DeploymentId> deployments) {
var endpoints = new TreeMap<ZoneId, Map<URI, ClusterSpec.Id>>(Comparator.comparing(ZoneId::value));
for (var deployment : deployments) {