From 3463bbcc710ce56a8d2ace1e2a2aaaf22db3a516 Mon Sep 17 00:00:00 2001 From: milindchawre Date: Wed, 2 Nov 2016 11:02:43 +0000 Subject: [PATCH] Fixes #21803 : Removing unused configuration in daemon/logger/fluentd Signed-off-by: milindchawre --- daemon/logger/fluentd/fluentd.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/daemon/logger/fluentd/fluentd.go b/daemon/logger/fluentd/fluentd.go index 31315844d9..5b8bdb1f37 100644 --- a/daemon/logger/fluentd/fluentd.go +++ b/daemon/logger/fluentd/fluentd.go @@ -31,14 +31,11 @@ const ( defaultHost = "127.0.0.1" defaultPort = 24224 defaultBufferLimit = 1024 * 1024 - defaultTagPrefix = "docker" // logger tries to reconnect 2**32 - 1 times // failed (and panic) after 204 years [ 1.5 ** (2**32 - 1) - 1 seconds] - defaultRetryWait = 1000 - defaultTimeout = 3 * time.Second - defaultMaxRetries = math.MaxInt32 - defaultReconnectWaitIncreRate = 1.5 + defaultRetryWait = 1000 + defaultMaxRetries = math.MaxInt32 addressKey = "fluentd-address" bufferLimitKey = "fluentd-buffer-limit"