Merge pull request #38046 from nonspecialist/master
Only add CONTAINER_PARTIAL_MESSAGE if not the last partial
This commit is contained in:
commit
22dbbcc4c5
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ func (s *journald) Log(msg *logger.Message) error {
|
|||
for k, v := range s.vars {
|
||||
vars[k] = v
|
||||
}
|
||||
if msg.PLogMetaData != nil {
|
||||
if msg.PLogMetaData != nil && !msg.PLogMetaData.Last {
|
||||
vars["CONTAINER_PARTIAL_MESSAGE"] = "true"
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue