mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
fluentd: Turn ForceStopAsyncSend true when async connect is used
The flag ForceStopAsyncSend was added to fluent logger lib in v1.5.0 (at this time named AsyncStop) to tell fluentd to abort sending logs asynchronously as soon as possible, when its Close() method is called. However this flag was broken because of the way the lib was handling it (basically, the lib could be stucked in retry-connect loop without checking this flag). Since fluent logger lib v1.7.0, calling Close() (when ForceStopAsyncSend is true) will really stop all ongoing send/connect procedure, wherever it's stucked. Signed-off-by: Albin Kerouanton <albinker@gmail.com>
This commit is contained in:
parent
e24d61b7ef
commit
bd61629b6b
1 changed files with 1 additions and 0 deletions
|
@ -242,6 +242,7 @@ func parseConfig(cfg map[string]string) (fluent.Config, error) {
|
|||
AsyncConnect: asyncConnect,
|
||||
SubSecondPrecision: subSecondPrecision,
|
||||
RequestAck: requestAck,
|
||||
ForceStopAsyncSend: async || asyncConnect,
|
||||
}
|
||||
|
||||
return config, nil
|
||||
|
|
Loading…
Reference in a new issue