diff options
| author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-09-20 06:32:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-20 06:32:19 +0200 |
| commit | 9dc764c1976944c2e14480e6dd0a7db6ced37107 (patch) | |
| tree | 84669c5e1507aa8ec70b29e736b2bf2c7adfcc0f | |
| parent | 45b072510220d3bab467c43ca3707ef3cebd8ba9 (diff) | |
| parent | 4f0e095b23cc701ac19fd338b81de5987eeacfe5 (diff) | |
| download | podman-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.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"` |
