summaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2022-03-16 15:00:28 +0100
committerJon Marius Venstad <venstad@gmail.com>2022-03-16 15:00:28 +0100
commita807f71ca66ad831bccc40bc34f680c7c7315bca (patch)
tree1457b21077213972fa318539497888b5928136d5 /flags
parent89c00be86b2de199ab125d0bc662e6b429dc662d (diff)
Add application id dimension to incompatibility flag
Diffstat (limited to 'flags')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java10
1 files changed, 2 insertions, 8 deletions
diff --git a/flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java b/flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java
index a38c0a490cd..e3960d995e9 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java
@@ -252,14 +252,8 @@ public class PermanentFlags {
"incompatible with any current deployments. " +
"The config server will refuse to serve config to nodes running a version which is incompatible with their " +
"current wanted node version, i.e., nodes about to upgrade to a version which is incompatible with the current.",
- "Takes effect immediately");
-
- public static final UnboundListFlag<Integer> INCOMPATIBLE_MAJOR_VERSIONS = defineListFlag(
- "incompatible-major-versions", List.of(8), Integer.class,
- "A list of major versions which are binary-incompatible and requires an application package to " +
- "be built specifically for that Vespa version. When an application upgrades to an incompatible major " +
- "version, the config server will refuse to serve config to nodes still running on older major versions",
- "Takes effect immediately");
+ "Takes effect immediately",
+ APPLICATION_ID);
public static final UnboundStringFlag ADMIN_CLUSTER_NODE_ARCHITECTURE = defineStringFlag(
"admin-cluster-node-architecture", "x86_64",