aboutsummaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2023-08-31 11:35:50 +0200
committerHarald Musum <musum@yahooinc.com>2023-08-31 11:35:50 +0200
commit8d16fb9ebae48c49ccf0a81af1a4d2ac6adde0ef (patch)
tree1783e23c3ff633a1d56b4c81ee1d504b1b68a200 /flags
parentf773de5320c8c01aecb2624bf2d62d5f37d86727 (diff)
Remove unused flag and update expiry date on others
Diffstat (limited to 'flags')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/Flags.java12
1 files changed, 3 insertions, 9 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 e4717dd5de3..ea716556210 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
@@ -305,12 +305,6 @@ public class Flags {
"Whether to enable CrowdStrike.", "Takes effect on next host admin tick",
HOSTNAME);
- public static final UnboundBooleanFlag ALLOW_MORE_THAN_ONE_CONTENT_GROUP_DOWN = defineFeatureFlag(
- "allow-more-than-one-content-group-down", true, List.of("hmusum"), "2023-04-14", "2023-09-01",
- "Whether to enable possible configuration of letting more than one content group down",
- "Takes effect at redeployment",
- APPLICATION_ID);
-
public static final UnboundBooleanFlag RANDOMIZED_ENDPOINT_NAMES = defineFeatureFlag(
"randomized-endpoint-names", false, List.of("andreer"), "2023-04-26", "2023-09-14",
"Whether to use randomized endpoint names",
@@ -351,13 +345,13 @@ public class Flags {
public static final UnboundBooleanFlag WRITE_CONFIG_SERVER_SESSION_DATA_AS_ONE_BLOB = defineFeatureFlag(
"write-config-server-session-data-as-blob", false,
- List.of("hmusum"), "2023-07-19", "2023-09-01",
+ List.of("hmusum"), "2023-07-19", "2023-10-01",
"Whether to write config server session data in one blob or as individual paths",
"Takes effect immediately");
public static final UnboundBooleanFlag READ_CONFIG_SERVER_SESSION_DATA_AS_ONE_BLOB = defineFeatureFlag(
"read-config-server-session-data-as-blob", false,
- List.of("hmusum"), "2023-07-19", "2023-09-01",
+ List.of("hmusum"), "2023-07-19", "2023-10-01",
"Whether to read config server session data from sesion data blob or from individual paths",
"Takes effect immediately");
@@ -377,7 +371,7 @@ public class Flags {
public static final UnboundBooleanFlag WRITE_APPLICATION_DATA_AS_JSON = defineFeatureFlag(
"write-application-data-as-json", false,
- List.of("hmusum"), "2023-08-27", "2023-09-27",
+ List.of("hmusum"), "2023-08-27", "2023-10-01",
"Whether to write application data (active session id, last deployed session id etc. ) as json",
"Takes effect immediately");