Skip to content

Commit

Permalink
Merge pull request #24313 from vespa-engine/hakonhall/run-rootchain-a…
Browse files Browse the repository at this point in the history
…s-graph

Run RootChain as graph flag
  • Loading branch information
freva authored Oct 5, 2022
2 parents 0e7eaa5 + 9209c8c commit 70bc66e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions flags/src/main/java/com/yahoo/vespa/flags/Flags.java
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 70bc66e

Please sign in to comment.