summaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
authorMorten Tokle <mortent@verizonmedia.com>2021-11-01 10:38:54 +0100
committerGitHub <noreply@github.com>2021-11-01 10:38:54 +0100
commitc16b9029350ff49b17aef480eb9766b3591c10c6 (patch)
treede01bf055ac6752dd5aaebd08b3422a1f5a33192 /flags
parent8cbeb2b57269e64ea05ccf9f1044f57843a6e80c (diff)
parent9d2074c0c4b9395ba09514e1e017a50de053e241 (diff)
Merge pull request #19806 from vespa-engine/mortent/extend-flags
Extend expired flags
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 ef4b232c68a..9deb0bc935d 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
@@ -137,7 +137,7 @@ public class Flags {
public static final UnboundBooleanFlag HIDE_SHARED_ROUTING_ENDPOINT = defineFeatureFlag(
"hide-shared-routing-endpoint", false,
- List.of("tokle", "bjormel"), "2020-12-02", "2021-11-01",
+ List.of("tokle", "bjormel"), "2020-12-02", "2022-01-01",
"Whether the controller should hide shared routing layer endpoint",
"Takes effect immediately",
APPLICATION_ID
@@ -269,13 +269,13 @@ public class Flags {
public static final UnboundListFlag<String> ALLOWED_SERVICE_VIEW_APIS = defineListFlag(
"allowed-service-view-apis", List.of("state/v1/"), String.class,
- List.of("mortent"), "2021-08-05", "2021-11-01",
+ List.of("mortent"), "2021-08-05", "2022-01-01",
"Apis allowed to proxy through the service view api",
"Takes effect immediately");
public static final UnboundBooleanFlag SEPARATE_TENANT_IAM_ROLES = defineFeatureFlag(
"separate-tenant-iam-roles", false,
- List.of("mortent"), "2021-08-12", "2021-11-01",
+ List.of("mortent"), "2021-08-12", "2022-01-01",
"Create separate iam roles for tenant",
"Takes effect on redeploy",
TENANT_ID);