summaryrefslogtreecommitdiffstats
path: root/flags/src
diff options
context:
space:
mode:
authorHåkon Hallingstad <hakon@yahooinc.com>2023-11-10 13:27:49 +0100
committerHåkon Hallingstad <hakon@yahooinc.com>2023-11-10 13:27:49 +0100
commitf97f23ad20962f0b53964942269d25a1a986efea (patch)
tree7ea7005bcde2c8deea005a000036485be1b7aa40 /flags/src
parent6af2afffd4dd698c98af539d60f724c712bc3371 (diff)
exclusive-provisioning and make-exclusive has rolled out
Diffstat (limited to 'flags/src')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/Flags.java14
1 files changed, 6 insertions, 8 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 06530fdc962..491b7db3c13 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
@@ -326,18 +326,16 @@ public class Flags {
INSTANCE_ID);
public static final UnboundBooleanFlag EXCLUSIVE_PROVISIONING = defineFeatureFlag(
- "exclusive-provisioning", false,
+ "exclusive-provisioning", true,
List.of("hakonhall"), "2023-10-12", "2023-12-20",
- "Whether to provision a host exclusively to an application ID only based on exclusive=\"true\" from services.xml. " +
- "Enabling this will produce hosts with exclusiveTo[ApplicationId] without provisionedToApplicationId.",
- "Takes immediate effect when provisioning new hosts");
+ "Unused, remove once Vespa >=8.257 has rolled out everywhere",
+ "no-op");
public static final UnboundBooleanFlag MAKE_EXCLUSIVE = defineFeatureFlag(
- "make-exclusive", false,
+ "make-exclusive", true,
List.of("hakonhall"), "2023-10-20", "2023-12-20",
- "Allow an exclusive allocation to a non-exclusive host, but if so, make the host exclusive.",
- "Takes immediate effect on any following preparation of clusters",
- INSTANCE_ID, TENANT_ID, VESPA_VERSION);
+ "Unused, remove once Vespa >=8.257 has rolled out everywhere",
+ "no-op");
public static final UnboundBooleanFlag WRITE_CONFIG_SERVER_SESSION_DATA_AS_ONE_BLOB = defineFeatureFlag(
"write-config-server-session-data-as-blob", false,