summaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2021-09-16 13:57:58 +0200
committerHarald Musum <musum@yahooinc.com>2021-09-16 13:57:58 +0200
commiteb8bf58a1aa912a426cb0e7936db0d4ddc6e06c5 (patch)
tree7443ec8e89d20e6d94501e0c6b28cc3a9b044731 /flags
parentf7d9ead50b8c0167f9a6ddb645320ee0e7c0085d (diff)
Set default value of throw-exception-if-resource-limits-specified to true
Diffstat (limited to 'flags')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/Flags.java2
1 files changed, 1 insertions, 1 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 065e07a0934..799a0fd6ee7 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
@@ -229,7 +229,7 @@ public class Flags {
ZONE_ID, APPLICATION_ID);
public static final UnboundBooleanFlag THROW_EXCEPTION_IF_RESOURCE_LIMITS_SPECIFIED = defineFeatureFlag(
- "throw-exception-if-resource-limits-specified", false,
+ "throw-exception-if-resource-limits-specified", true,
List.of("hmusum"), "2021-06-07", "2021-10-01",
"Whether to throw an exception in hosted Vespa if the application specifies resource limits in services.xml",
"Takes effect on next deployment through controller",