Merge pull request #8543 from mheon/no_syslog_true

Do not use "true" after "syslog" in exit commands
This commit is contained in:
OpenShift Merge Robot
2020-12-02 01:03:40 +01:00
committed by GitHub

View File

@@ -388,7 +388,7 @@ func CreateExitCommandArgs(storageConfig storage.StoreOptions, config *config.Co
}
if syslog {
command = append(command, "--syslog", "true")
command = append(command, "--syslog")
}
command = append(command, []string{"container", "cleanup"}...)