diff options
author | Ashley Cui <acui@redhat.com> | 2021-02-22 15:13:46 -0500 |
---|---|---|
committer | Ashley Cui <acui@redhat.com> | 2021-03-02 14:28:16 -0500 |
commit | b19791c0b60b4f113d80e17a9ca9c7c2074be465 (patch) | |
tree | d03dd9f18392766d5d68efdd94ef2a1ecca4b725 /libpod/container_log_linux.go | |
parent | 426178a49991106ffe222f12cc42409ae78dd257 (diff) | |
download | podman-b19791c0b60b4f113d80e17a9ca9c7c2074be465.tar.gz podman-b19791c0b60b4f113d80e17a9ca9c7c2074be465.tar.bz2 podman-b19791c0b60b4f113d80e17a9ca9c7c2074be465.zip |
Tidy duplicate log tests
Some log tests were duplicated, and some didn't need to be repeated for
every driver. Also, added some comments
Signed-off-by: Ashley Cui <acui@redhat.com>
Diffstat (limited to 'libpod/container_log_linux.go')
-rw-r--r-- | libpod/container_log_linux.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpod/container_log_linux.go b/libpod/container_log_linux.go index 5792633b0..4a541b6e7 100644 --- a/libpod/container_log_linux.go +++ b/libpod/container_log_linux.go @@ -52,6 +52,7 @@ func (c *Container) readFromJournal(ctx context.Context, options *logs.LogOption if time.Now().Before(options.Since) { return nil } + // coreos/go-systemd/sdjournal expects a negative time.Duration for times in the past config.Since = -time.Since(options.Since) } config.Matches = append(config.Matches, journal.Match{ |