diff options
author | Paul Holzinger <pholzing@redhat.com> | 2021-09-14 11:27:12 +0200 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2021-09-14 11:40:13 +0200 |
commit | 31604b43d13c93bc730b07227ed0c39a7b3314cd (patch) | |
tree | eb992bd5ac686abac4fc442c8b5640e72c1a8532 /pkg/api/handlers/compat | |
parent | cc9491447479844ffdd27ba1c310d7e0a5a59a79 (diff) | |
download | podman-31604b43d13c93bc730b07227ed0c39a7b3314cd.tar.gz podman-31604b43d13c93bc730b07227ed0c39a7b3314cd.tar.bz2 podman-31604b43d13c93bc730b07227ed0c39a7b3314cd.zip |
Revert "logs: adjust handling around partial log messages"
This reverts commit 21f396de6f5024abbf6edd2ca63edcb1525eefcc.
Changing the log endpoint is a breaking change we should not do in 3.4.
[NO TESTS NEEDED]
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'pkg/api/handlers/compat')
-rw-r--r-- | pkg/api/handlers/compat/containers_logs.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkg/api/handlers/compat/containers_logs.go b/pkg/api/handlers/compat/containers_logs.go index 4adcaa511..d73b02b47 100644 --- a/pkg/api/handlers/compat/containers_logs.go +++ b/pkg/api/handlers/compat/containers_logs.go @@ -153,7 +153,9 @@ func LogsFromContainer(w http.ResponseWriter, r *http.Request) { } frame.WriteString(line.Msg) - if !line.Partial() { + // Log lines in the compat layer require adding EOL + // https://github.com/containers/podman/issues/8058 + if !utils.IsLibpodRequest(r) { frame.WriteString("\n") } |