From 53b23cdc1be3c01ad4eaed231ee98cf727e12281 Mon Sep 17 00:00:00 2001 From: Chris Aubuchon Date: Wed, 2 Dec 2015 16:05:05 -0600 Subject: [PATCH] `30 * time.Second` -> `"30s"` in DefaultConfig --- command/agent/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/agent/config.go b/command/agent/config.go index ecb524202..ac86ee5ff 100644 --- a/command/agent/config.go +++ b/command/agent/config.go @@ -281,7 +281,7 @@ func DefaultConfig() *Config { Enabled: false, StartJoin: []string{}, RetryJoin: []string{}, - RetryInterval: 30 * time.Second, + RetryInterval: "30s", RetryMaxAttempts: 0, }, }