summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-09-20 06:32:19 +0200
committerGitHub <noreply@github.com>2019-09-20 06:32:19 +0200
commit9dc764c1976944c2e14480e6dd0a7db6ced37107 (patch)
tree84669c5e1507aa8ec70b29e736b2bf2c7adfcc0f
parent45b072510220d3bab467c43ca3707ef3cebd8ba9 (diff)
parent4f0e095b23cc701ac19fd338b81de5987eeacfe5 (diff)
downloadpodman-9dc764c1976944c2e14480e6dd0a7db6ced37107.tar.gz
podman-9dc764c1976944c2e14480e6dd0a7db6ced37107.tar.bz2
podman-9dc764c1976944c2e14480e6dd0a7db6ced37107.zip
Merge pull request #4063 from baude/tomltypo
fix trivial type for event logger
-rw-r--r--libpod/runtime.go2
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"`