Skip to content

Commit

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

Extend expiry date for some flags
  • Loading branch information
hakonhall authored Dec 13, 2024
2 parents cfa3f3c + b9b3f02 commit 8307d1d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions flags/src/main/java/com/yahoo/vespa/flags/Flags.java
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ public class Flags {

public static final UnboundBooleanFlag USE_V8_GEO_POSITIONS = defineFeatureFlag(
"use-v8-geo-positions", true,
List.of("arnej"), "2021-11-15", "2024-12-31",
List.of("arnej"), "2021-11-15", "2025-02-01",
"Use Vespa 8 types and formats for geographical positions",
"Takes effect at redeployment",
INSTANCE_ID);
Expand All @@ -247,7 +247,7 @@ public class Flags {

public static final UnboundStringFlag LOG_FILE_COMPRESSION_ALGORITHM = defineStringFlag(
"log-file-compression-algorithm", "",
List.of("arnej"), "2022-06-14", "2024-12-31",
List.of("arnej"), "2022-06-14", "2025-02-01",
"Which algorithm to use for compressing log files. Valid values: empty string (default), gzip, zstd",
"Takes effect immediately",
INSTANCE_ID);
Expand Down Expand Up @@ -364,7 +364,7 @@ public class Flags {

public static final UnboundBooleanFlag CLOUD_TRIAL_NOTIFICATIONS = defineFeatureFlag(
"cloud-trial-notifications", false,
List.of("bjorncs", "oyving"), "2023-10-13", "2024-12-31",
List.of("bjorncs", "oyving"), "2023-10-13", "2025-02-01",
"Whether to send cloud trial email notifications",
"Takes effect immediately");

Expand All @@ -379,7 +379,7 @@ public class Flags {

public static UnboundBooleanFlag LOGSERVER_OTELCOL_AGENT = defineFeatureFlag(
"logserver-otelcol-agent", false,
List.of("olaa"), "2024-04-03", "2024-12-31",
List.of("olaa"), "2024-04-03", "2025-02-01",
"Whether logserver container should run otel agent",
"Takes effect at redeployment", INSTANCE_ID);

Expand Down

0 comments on commit 8307d1d

Please sign in to comment.