summaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
authorHåkon Hallingstad <hakon@yahooinc.com>2021-09-20 15:14:47 +0200
committerHåkon Hallingstad <hakon@yahooinc.com>2021-09-20 15:14:47 +0200
commit6583e64b5cb9098f7c3ebda0586f72ff3e617db6 (patch)
tree3c1b4ff0ef23b1fe4ce9c839168501c694bf2497 /flags
parent8e0e1768011066092a13fb40edef0184d76a1219 (diff)
Enable UNKNOWN service status
This will make infra services (host-admin and cfg) return UNKNOWN service status from service monitor on newly started config servers, and for about 10s. In this period suspension will fail.
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 c09435c6f28..6a3b33e6458 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
@@ -153,7 +153,7 @@ public class Flags {
"Takes effect on first run of DiskTask, typically after host-admin restart/upgrade.");
public static final UnboundBooleanFlag USE_UNKNOWN_SERVICE_STATUS = defineFeatureFlag(
- "use-unknown-service-status", false,
+ "use-unknown-service-status", true,
List.of("hakonhall"), "2021-09-13", "2021-10-13",
"Whether to use the UNKNOWN ServiceStatus for services that have not yet been probed by service monitor.",
"Takes effect on first (re)start of config server.");