diff options
author | baude <bbaude@redhat.com> | 2019-09-19 18:19:35 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-09-19 18:20:01 -0500 |
commit | 4f0e095b23cc701ac19fd338b81de5987eeacfe5 (patch) | |
tree | 0317ad4ebf2ed51a64171c538d06350dbb72777f /libpod/runtime.go | |
parent | c38844f5a9abedd1b9bce0641ee6f1909377a5d7 (diff) | |
download | podman-4f0e095b23cc701ac19fd338b81de5987eeacfe5.tar.gz podman-4f0e095b23cc701ac19fd338b81de5987eeacfe5.tar.bz2 podman-4f0e095b23cc701ac19fd338b81de5987eeacfe5.zip |
fix trivial type for event logger
Fixes: #4062
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'libpod/runtime.go')
-rw-r--r-- | libpod/runtime.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/runtime.go b/libpod/runtime.go index 80b58654e..e2b9667be 100644 --- a/libpod/runtime.go +++ b/libpod/runtime.go @@ -247,7 +247,7 @@ type RuntimeConfig struct { // EventsLogger determines where events should be logged EventsLogger string `toml:"events_logger"` // EventsLogFilePath is where the events log is stored. - EventsLogFilePath string `toml:"-events_logfile_path"` + EventsLogFilePath string `toml:"events_logfile_path"` //DetachKeys is the sequence of keys used to detach a container DetachKeys string `toml:"detach_keys"` |