summaryrefslogtreecommitdiffstats
path: root/orchestrator
diff options
context:
space:
mode:
authorHåkon Hallingstad <hakon@yahoo-inc.com>2017-05-04 09:46:15 +0200
committerHåkon Hallingstad <hakon@yahoo-inc.com>2017-05-04 09:46:15 +0200
commitb5210f4ae1f491efb29e8fdb76a3a169d4ed1c68 (patch)
tree35a393daff98a2cd70befc0ab2342f1169497239 /orchestrator
parentdf86b08b98f24e2300e83f8ee521162280084dd7 (diff)
Make TestUtil generate correct config ID for cluster controller
Diffstat (limited to 'orchestrator')
-rw-r--r--orchestrator/src/test/java/com/yahoo/vespa/orchestrator/TestUtil.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/TestUtil.java b/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/TestUtil.java
index 3dfd9a5cb8e..ab7a0268f31 100644
--- a/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/TestUtil.java
+++ b/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/TestUtil.java
@@ -32,6 +32,6 @@ public class TestUtil {
}
public static ConfigId clusterControllerConfigId(String contentClusterName, int index) {
- return new ConfigId(contentClusterName + "/cluster-controllers/" + index);
+ return new ConfigId(contentClusterName + "/" + contentClusterName + "-controllers/" + index);
}
}