diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-04-07 16:54:32 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-04-09 11:55:10 +0200 |
commit | 7a3bfbf0767675472451d7328cada39b5797cdf8 (patch) | |
tree | cc9f24c405c4bfbf636a0ada96fa22f11bba87c0 /pkg/api/handlers/compat | |
parent | 46227e0b030ac4180d8f3179f2b33c5d6d8fd200 (diff) | |
download | podman-7a3bfbf0767675472451d7328cada39b5797cdf8.tar.gz podman-7a3bfbf0767675472451d7328cada39b5797cdf8.tar.bz2 podman-7a3bfbf0767675472451d7328cada39b5797cdf8.zip |
podmanV2: implement logs
Implement the `podman {container} logs` for the v2 client. The remote
client does not yet support it. There's some more work needed for the
rest api; some options are missing (e.g., printing names) while others
are broken (e.g., the until http parameter).
The remote parts will be tackled in a future change.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/api/handlers/compat')
-rw-r--r-- | pkg/api/handlers/compat/containers.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/api/handlers/compat/containers.go b/pkg/api/handlers/compat/containers.go index c53af0f26..3f6aca502 100644 --- a/pkg/api/handlers/compat/containers.go +++ b/pkg/api/handlers/compat/containers.go @@ -261,6 +261,7 @@ func LogsFromContainer(w http.ResponseWriter, r *http.Request) { var until time.Time if _, found := r.URL.Query()["until"]; found { + // FIXME: until != since but the logs backend does not yet support until. since, err = util.ParseInputTime(query.Until) if err != nil { utils.BadRequest(w, "until", query.Until, err) |