1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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

Signed-off-by: milindchawre <milindchawre@gmail.com>
This commit is contained in:
milindchawre 2016-11-02 11:02:43 +00:00
parent ebf10dc5b0
commit 3463bbcc71

View file

@ -31,14 +31,11 @@ const (
defaultHost = "127.0.0.1" defaultHost = "127.0.0.1"
defaultPort = 24224 defaultPort = 24224
defaultBufferLimit = 1024 * 1024 defaultBufferLimit = 1024 * 1024
defaultTagPrefix = "docker"
// logger tries to reconnect 2**32 - 1 times // logger tries to reconnect 2**32 - 1 times
// failed (and panic) after 204 years [ 1.5 ** (2**32 - 1) - 1 seconds] // failed (and panic) after 204 years [ 1.5 ** (2**32 - 1) - 1 seconds]
defaultRetryWait = 1000 defaultRetryWait = 1000
defaultTimeout = 3 * time.Second defaultMaxRetries = math.MaxInt32
defaultMaxRetries = math.MaxInt32
defaultReconnectWaitIncreRate = 1.5
addressKey = "fluentd-address" addressKey = "fluentd-address"
bufferLimitKey = "fluentd-buffer-limit" bufferLimitKey = "fluentd-buffer-limit"