Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend expiry date for some flags #33037

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading