Browse code

Fixes #21803 : Removing unused configuration in daemon/logger/fluentd

Signed-off-by: milindchawre <milindchawre@gmail.com>

milindchawre authored on 2016/11/02 20:02:43
Showing 1 changed files
... ...
@@ -31,14 +31,11 @@ const (
31 31
 	defaultHost        = "127.0.0.1"
32 32
 	defaultPort        = 24224
33 33
 	defaultBufferLimit = 1024 * 1024
34
-	defaultTagPrefix   = "docker"
35 34
 
36 35
 	// logger tries to reconnect 2**32 - 1 times
37 36
 	// failed (and panic) after 204 years [ 1.5 ** (2**32 - 1) - 1 seconds]
38
-	defaultRetryWait              = 1000
39
-	defaultTimeout                = 3 * time.Second
40
-	defaultMaxRetries             = math.MaxInt32
41
-	defaultReconnectWaitIncreRate = 1.5
37
+	defaultRetryWait  = 1000
38
+	defaultMaxRetries = math.MaxInt32
42 39
 
43 40
 	addressKey      = "fluentd-address"
44 41
 	bufferLimitKey  = "fluentd-buffer-limit"