summaryrefslogtreecommitdiffstats
path: root/orchestrator
diff options
context:
space:
mode:
authorHåkon Hallingstad <hakon@yahoo-inc.com>2017-05-04 09:47:57 +0200
committerHåkon Hallingstad <hakon@yahoo-inc.com>2017-05-04 09:47:57 +0200
commitc8d89329184af4f21b784b715617da486dbf64dd (patch)
tree9867ec36401ec45460ae5695cfe38b77a60f4555 /orchestrator
parentb5210f4ae1f491efb29e8fdb76a3a169d4ed1c68 (diff)
Make TestUtil generate correct config ID for cluster controller, take 2
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 ab7a0268f31..0f074be9667 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 + "/" + contentClusterName + "-controllers/" + index);
+ return new ConfigId(contentClusterName + "/standalone/" + contentClusterName + "-controllers/" + index);
}
}