diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-11-15 20:55:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-15 20:55:28 +0100 |
commit | 230f0b622e391b78626f150471fce5c198048ed8 (patch) | |
tree | 3aad67474a08670ee52cd75e04136f8bf5624581 /libpod | |
parent | 47eaf23039d5a1352352ac1b33196b8344065632 (diff) | |
parent | 062c88771840f89482c5b16fd6dd4bad25749399 (diff) | |
download | podman-230f0b622e391b78626f150471fce5c198048ed8.tar.gz podman-230f0b622e391b78626f150471fce5c198048ed8.tar.bz2 podman-230f0b622e391b78626f150471fce5c198048ed8.zip |
Merge pull request #12130 from rhatdan/journal
Error logs --follow if events-backend != journald, event-logger=journald
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/container_log_linux.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libpod/container_log_linux.go b/libpod/container_log_linux.go index 4029d0af7..324aa3b98 100644 --- a/libpod/container_log_linux.go +++ b/libpod/container_log_linux.go @@ -44,6 +44,12 @@ func (c *Container) initializeJournal(ctx context.Context) error { } func (c *Container) readFromJournal(ctx context.Context, options *logs.LogOptions, logChannel chan *logs.LogLine) error { + // We need the container's events in the same journal to guarantee + // consistency, see #10323. + if options.Follow && c.runtime.config.Engine.EventsLogger != "journald" { + return errors.Errorf("using --follow with the journald --log-driver but without the journald --events-backend (%s) is not supported", c.runtime.config.Engine.EventsLogger) + } + journal, err := sdjournal.NewJournal() if err != nil { return err @@ -105,12 +111,6 @@ func (c *Container) readFromJournal(ctx context.Context, options *logs.LogOption return errors.Wrap(cursorError, "initial journal cursor") } - // We need the container's events in the same journal to guarantee - // consistency, see #10323. - if options.Follow && c.runtime.config.Engine.EventsLogger != "journald" { - return errors.Errorf("using --follow with the journald --log-driver but without the journald --events-backend (%s) is not supported", c.runtime.config.Engine.EventsLogger) - } - options.WaitGroup.Add(1) go func() { defer func() { |