diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-04-21 11:01:48 +0200 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-04-21 13:43:58 +0200 |
commit | ff2e6291a58785d128a6ff17f49ad45b3bc917ff (patch) | |
tree | e695f63690e1d2f136e85370886039aac2559f2b /libpod/events.go | |
parent | 9c36d8458c1b4d4ab504a7ff54db87489cbb0254 (diff) | |
download | podman-ff2e6291a58785d128a6ff17f49ad45b3bc917ff.tar.gz podman-ff2e6291a58785d128a6ff17f49ad45b3bc917ff.tar.bz2 podman-ff2e6291a58785d128a6ff17f49ad45b3bc917ff.zip |
vendor c/common
Update the recent events-log changes to fix the build error.
[NO NEW TESTS NEEDED] since there's no functional change.
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'libpod/events.go')
-rw-r--r-- | libpod/events.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/events.go b/libpod/events.go index 3908536a1..39f5786a4 100644 --- a/libpod/events.go +++ b/libpod/events.go @@ -15,7 +15,7 @@ func (r *Runtime) newEventer() (events.Eventer, error) { options := events.EventerOptions{ EventerType: r.config.Engine.EventsLogger, LogFilePath: r.config.Engine.EventsLogFilePath, - LogFileMaxSize: r.config.Engine.EventsLogFileMaxSize, + LogFileMaxSize: r.config.Engine.EventsLogMaxSize(), } return events.NewEventer(options) } |