Skip to content

Commit

Permalink
Merge pull request #32309 from vespa-engine/hmusum/extend-flag-expiry…
Browse files Browse the repository at this point in the history
…-date-6

Extend expiry date for a few flags
  • Loading branch information
Harald Musum authored Sep 2, 2024
2 parents 81a8bb7 + 6da0ac5 commit a31fe3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions flags/src/main/java/com/yahoo/vespa/flags/Flags.java
Original file line number Diff line number Diff line change
Expand Up @@ -355,13 +355,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", "2024-09-01",
List.of("hmusum"), "2023-07-19", "2024-11-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", "2024-09-01",
List.of("hmusum"), "2023-07-19", "2024-11-01",
"Whether to read config server session data from session data blob or from individual paths",
"Takes effect immediately");

Expand Down Expand Up @@ -396,7 +396,7 @@ public class Flags {

public static final UnboundStringFlag UNKNOWN_CONFIG_DEFINITION = defineStringFlag(
"unknown-config-definition", "warn",
List.of("hmusum"), "2023-09-25", "2024-09-01",
List.of("hmusum"), "2023-09-25", "2024-10-01",
"How to handle user config referencing unknown config definitions. Valid values are 'warn' and 'fail'",
"Takes effect at redeployment",
INSTANCE_ID);
Expand Down

0 comments on commit a31fe3b

Please sign in to comment.