aboutsummaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
Diffstat (limited to 'flags')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/Flags.java14
1 files changed, 7 insertions, 7 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 f1d33b1458e..3bd8e686da4 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
@@ -126,12 +126,12 @@ public class Flags {
"Whether the Orchestrator can assume any missing proxy services are down.",
"Takes effect on first (re)start of config server");
- public static final UnboundBooleanFlag GROUP_SUSPENSION = defineFeatureFlag(
- "group-suspension", true,
- List.of("hakon"), "2021-01-22", "2021-08-22",
- "Allow all content nodes in a hierarchical group to suspend at the same time",
- "Takes effect on the next suspension request to the Orchestrator.",
- APPLICATION_ID);
+ public static final UnboundBooleanFlag GROUP_PERMANENT_SUSPENSION = defineFeatureFlag(
+ "group-permanent-suspension", true,
+ List.of("hakonhall"), "2021-09-11", "2021-11-11",
+ "Allow all content nodes in a hierarchical group to suspend at the same time when" +
+ "permanently suspending a host.",
+ "Takes effect on the next permanent suspension request to the Orchestrator.");
public static final UnboundBooleanFlag ENCRYPT_DIRTY_DISK = defineFeatureFlag(
"encrypt-dirty-disk", false,
@@ -236,7 +236,7 @@ public class Flags {
APPLICATION_ID);
public static final UnboundBooleanFlag DRY_RUN_ONNX_ON_SETUP = defineFeatureFlag(
- "dry-run-onnx-on-setup", false,
+ "dry-run-onnx-on-setup", true,
List.of("baldersheim"), "2021-06-23", "2021-09-01",
"Whether to dry run onnx models on setup for better error checking",
"Takes effect on next internal redeployment",