summaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2021-12-01 09:57:43 +0100
committerGeir Storli <geirst@yahooinc.com>2021-12-01 09:57:43 +0100
commite61db6f59f40e6fcfb1607772403336272683dac (patch)
treeaef8bab8c03b8135a201e5b4a39ec7d343d2baf8 /flags
parenta2c2a77aded8a9fb817d5b3017f9cceb679fe941 (diff)
Extend feature flags expiry date.
Diffstat (limited to 'flags')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/Flags.java6
1 files changed, 3 insertions, 3 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 89a97f3e17d..9f8b3551515 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
@@ -250,7 +250,7 @@ public class Flags {
public static final UnboundBooleanFlag IGNORE_MERGE_QUEUE_LIMIT = defineFeatureFlag(
"ignore-merge-queue-limit", false,
- List.of("vekterli", "geirst"), "2021-10-06", "2021-12-01",
+ List.of("vekterli", "geirst"), "2021-10-06", "2022-03-01",
"Specifies if merges that are forwarded (chained) from another content node are always " +
"allowed to be enqueued even if the queue is otherwise full.",
"Takes effect at redeploy",
@@ -265,7 +265,7 @@ public class Flags {
public static final UnboundDoubleFlag MIN_NODE_RATIO_PER_GROUP = defineDoubleFlag(
"min-node-ratio-per-group", 0.0,
- List.of("geirst", "vekterli"), "2021-07-16", "2021-12-01",
+ List.of("geirst", "vekterli"), "2021-07-16", "2022-03-01",
"Minimum ratio of nodes that have to be available (i.e. not Down) in any hierarchic content cluster group for the group to be Up",
"Takes effect at redeployment",
ZONE_ID, APPLICATION_ID);
@@ -333,7 +333,7 @@ public class Flags {
public static final UnboundIntFlag DISTRIBUTOR_MERGE_BUSY_WAIT = defineIntFlag(
"distributor-merge-busy-wait", 10,
- List.of("geirst", "vekterli"), "2021-10-04", "2021-12-31",
+ List.of("geirst", "vekterli"), "2021-10-04", "2022-03-01",
"Number of seconds that scheduling of new merge operations in the distributor should be inhibited " +
"towards a content node that has indicated merge busy",
"Takes effect at redeploy",