summaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2019-09-23 10:47:23 +0200
committerGitHub <noreply@github.com>2019-09-23 10:47:23 +0200
commitcfe167148c1c19a4ceb6175268d10ac01982f7d3 (patch)
tree5c092e02545cce4c06c288ed497a8df012ca287f /flags
parent42e17858a130f4ca148184d20e541ce3010b7c93 (diff)
parentb9c6d6c9e422e3e42df1655aa8eba14a03b27373 (diff)
Merge pull request #10758 from vespa-engine/balder/remove-fdispatch-flag
Fdispatch is now gone - no mor eneed for this flag.
Diffstat (limited to 'flags')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/Flags.java12
1 files changed, 0 insertions, 12 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 c4d29d9e8c0..8bb16e8f334 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
@@ -97,24 +97,12 @@ public class Flags {
"Takes effect on restart of Docker container",
NODE_TYPE, APPLICATION_ID, HOSTNAME);
- public static final UnboundBooleanFlag USE_FDISPATCH_BY_DEFAULT = defineFeatureFlag(
- "use-fdispatch-by-default", true,
- "Should fdispatch be used as the default instead of the java dispatcher",
- "Takes effect at redeployment",
- APPLICATION_ID);
-
public static final UnboundBooleanFlag USE_ADAPTIVE_DISPATCH = defineFeatureFlag(
"use-adaptive-dispatch", false,
"Should adaptive dispatch be used over round robin",
"Takes effect at redeployment",
APPLICATION_ID);
- public static final UnboundBooleanFlag DISPATCH_WITH_PROTOBUF = defineFeatureFlag(
- "dispatch-with-protobuf", false,
- "Should the java dispatcher use protobuf/jrt as the default",
- "Takes effect at redeployment",
- APPLICATION_ID);
-
public static final UnboundBooleanFlag ENABLE_DYNAMIC_PROVISIONING = defineFeatureFlag(
"enable-dynamic-provisioning", false,
"Provision a new docker host when we otherwise can't allocate a docker node",