mirror of
https://github.com/containers/podman.git
synced 2025-05-20 08:36:23 +08:00
Fix podman logs read partial log lines
If a partial log line has the length 1 it was ignored by podman logs. Fixes #8879 Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
This commit is contained in:
@ -82,7 +82,7 @@ func (c *Container) readFromLogFile(ctx context.Context, options *logs.LogOption
|
||||
if nll.Partial() {
|
||||
partial += nll.Msg
|
||||
continue
|
||||
} else if !nll.Partial() && len(partial) > 1 {
|
||||
} else if !nll.Partial() && len(partial) > 0 {
|
||||
nll.Msg = partial + nll.Msg
|
||||
partial = ""
|
||||
}
|
||||
|
Reference in New Issue
Block a user