From 46742a5041883c914b20d52556ee5df4efb94542 Mon Sep 17 00:00:00 2001 From: James Phillips Date: Wed, 13 Dec 2017 10:52:06 -0800 Subject: [PATCH] Adds TODOs referencing #3744. --- agent/config/default.go | 2 ++ agent/consul/config.go | 3 +++ 2 files changed, 5 insertions(+) diff --git a/agent/config/default.go b/agent/config/default.go index 1c52c7ac36..f3a0adfc5a 100644 --- a/agent/config/default.go +++ b/agent/config/default.go @@ -54,6 +54,8 @@ func DefaultSource() Source { syslog_facility = "LOCAL0" tls_min_version = "tls10" + // TODO (slackpad) - Until #3744 is done, we need to keep these + // in sync with agent/consul/config.go. autopilot = { cleanup_dead_servers = true last_contact_threshold = "200ms" diff --git a/agent/consul/config.go b/agent/consul/config.go index ffbd35ef9b..5bc89ebaa7 100644 --- a/agent/consul/config.go +++ b/agent/consul/config.go @@ -416,12 +416,15 @@ func DefaultConfig() *Config { TLSMinVersion: "tls10", + // TODO (slackpad) - Until #3744 is done, we need to keep these + // in sync with agent/config/default.go. AutopilotConfig: &structs.AutopilotConfig{ CleanupDeadServers: true, LastContactThreshold: 200 * time.Millisecond, MaxTrailingLogs: 250, ServerStabilizationTime: 10 * time.Second, }, + ServerHealthInterval: 2 * time.Second, AutopilotInterval: 10 * time.Second, }