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

increase the maxJSONDecodeRetry in json log reader

Signed-off-by: Shijiang Wei <mountkin@gmail.com>
This commit is contained in:
Shijiang Wei 2015-11-02 17:51:17 +08:00
parent e2e2ea401a
commit a82f9ac819

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.