summaryrefslogtreecommitdiffstats
path: root/flags/src
diff options
context:
space:
mode:
authorMorten Tokle <mortent@verizonmedia.com>2021-04-26 08:21:10 +0200
committerMorten Tokle <mortent@verizonmedia.com>2021-04-26 08:21:10 +0200
commit908a59a9f8e4a04f6eb847c20e1ec3b79a3c8864 (patch)
tree12e0cc0a032eb2a66ff52315029b98e784879256 /flags/src
parent52390b8551a0a3906c3c8ef769136ec216c211f4 (diff)
Correct default value
Diffstat (limited to 'flags/src')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java2
1 files changed, 1 insertions, 1 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 37f688ff8d4..d6d8b1a26e1 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java
@@ -152,7 +152,7 @@ public class PermanentFlags {
);
public static final UnboundBooleanFlag ALLOW_DISABLE_MTLS = defineFeatureFlag(
- "allow-disable-mtls", false,
+ "allow-disable-mtls", true,
"Allow application to disable client authentication",
"Takes effect on redeployment",
APPLICATION_ID);