summaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-04-16 12:54:39 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-04-16 12:54:39 +0000
commite0b93a22f5f09e6b939eab50e3ff138ef15fbd42 (patch)
tree9dd76d840f25488a0a5f7b3f84391e054a81b68f /flags
parentab4749ee3ea0cc4986c7e572f804a29d76fe1a6c (diff)
Document that it is per zone too.
Diffstat (limited to 'flags')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/Flags.java8
1 files changed, 4 insertions, 4 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 db925ca0e46..a4e34098025 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
@@ -119,7 +119,7 @@ public class Flags {
"use-adaptive-dispatch", false,
"Should adaptive dispatch be used over round robin",
"Takes effect at redeployment",
- APPLICATION_ID);
+ ZONE_ID, APPLICATION_ID);
public static final UnboundIntFlag REBOOT_INTERVAL_IN_DAYS = defineIntFlag(
"reboot-interval-in-days", 30,
@@ -150,19 +150,19 @@ public class Flags {
"default-term-wise-limit", 1.0,
"Default limit for when to apply termwise query evaluation",
"Takes effect at redeployment",
- APPLICATION_ID);
+ ZONE_ID, APPLICATION_ID);
public static final UnboundDoubleFlag DEFAULT_SOFT_START_SECONDS = defineDoubleFlag(
"default-soft-start-seconds", 0.0,
"Default number of seconds that a soft start shall use",
"Takes effect at redeployment",
- APPLICATION_ID);
+ ZONE_ID, APPLICATION_ID);
public static final UnboundDoubleFlag DEFAULT_TOP_K_PROBABILITY = defineDoubleFlag(
"default-top-k-probability", 1.0,
"Default probability that you will get the globally top K documents when merging many partitions.",
"Takes effect at redeployment",
- APPLICATION_ID);
+ ZONE_ID, APPLICATION_ID);
public static final UnboundBooleanFlag HOST_HARDENING = defineFeatureFlag(
"host-hardening", false,