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

Merge pull request #37029 from thaJeztah/fix-fluentd-partial

Fix fluentd partial detection
This commit is contained in:
Brian Goff 2018-05-10 12:51:02 -04:00 committed by GitHub
commit f4ebcb42ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -163,7 +163,7 @@ func (f *fluentd) Log(msg *logger.Message) error {
for k, v := range f.extra { for k, v := range f.extra {
data[k] = v data[k] = v
} }
if msg.Partial { if msg.PLogMetaData != nil {
data["partial_message"] = "true" data["partial_message"] = "true"
} }