summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValerij Fredriksen <freva@users.noreply.github.com>2022-10-05 14:51:59 +0200
committerGitHub <noreply@github.com>2022-10-05 14:51:59 +0200
commit70bc66e4cc74f00e528b945fc90786defd2eb88f (patch)
treef9165f65c79451a019ff30146a0b970bba02ceba
parent0e7eaa58bcf3d2ffa4bfdc222f0c595ec0e438ff (diff)
parent9209c8c76a16b8bd399790d1749f9bbc4183a9af (diff)
Merge pull request #24313 from vespa-engine/hakonhall/run-rootchain-as-graph
Run RootChain as graph flag
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/Flags.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
index 2dca3511044..d8e0ceb01bd 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
@@ -46,13 +46,13 @@ public class Flags {
private static volatile TreeMap<FlagId, FlagDefinition> flags = new TreeMap<>();
- public static final UnboundBooleanFlag MAIN_CHAIN_GRAPH = defineFeatureFlag(
- "main-chain-graph", true,
- List.of("hakonhall"), "2022-07-06", "2022-10-05",
- "Whether to run all tasks in the main task chain up to the one failing to converge (false), or " +
- "run all tasks in the main task chain whose dependencies have converged (true). And when suspending, " +
+ public static final UnboundBooleanFlag ROOT_CHAIN_GRAPH = defineFeatureFlag(
+ "root-chain-graph", true,
+ List.of("hakonhall"), "2022-10-05", "2022-11-04",
+ "Whether to run all tasks in the root task chain up to the one failing to converge (false), or " +
+ "run all tasks in the root task chain whose dependencies have converged (true). And when suspending, " +
"whether to run the tasks in sequence (false) or in reverse sequence (true).",
- "On first tick of the main chain after (re)start of host admin.",
+ "On first tick of the root chain after (re)start of host admin.",
ZONE_ID, NODE_TYPE, HOSTNAME);
public static final UnboundDoubleFlag DEFAULT_TERM_WISE_LIMIT = defineDoubleFlag(