Merge pull request #17606 from mountkin/increase-max-retries

increase the maxJSONDecodeRetry in json log reader
Upstream-commit: c30b9e590c69a01ee6ea0510142fb9f965b62f7a
Component: engine
This commit is contained in:
Brian Goff
2015-11-03 13:45:45 -05:00

View File

@ -28,7 +28,7 @@ import (
const (
// Name is the name of the file that the jsonlogger logs to.
Name = "json-file"
maxJSONDecodeRetry = 10
maxJSONDecodeRetry = 20000
)
// JSONFileLogger is Logger implementation for default Docker logging.