summaryrefslogtreecommitdiff
path: root/pkg/domain/infra/runtime_proxy.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-17 02:35:50 -0700
committerGitHub <noreply@github.com>2020-04-17 02:35:50 -0700
commitd31dcb9bbd521fe8e3e78b0ebe2a893634ab2e6b (patch)
tree215280684ce6195fac64f18ebd7d29c5baa376cc /pkg/domain/infra/runtime_proxy.go
parent0d2b5532c417c58bd24e71a56c5c55b43e423a59 (diff)
parent554c663b5ad2bd0c0fa4c58559ec2a9b19ed399f (diff)
downloadpodman-d31dcb9bbd521fe8e3e78b0ebe2a893634ab2e6b.tar.gz
podman-d31dcb9bbd521fe8e3e78b0ebe2a893634ab2e6b.tar.bz2
podman-d31dcb9bbd521fe8e3e78b0ebe2a893634ab2e6b.zip
Merge pull request #5856 from jwhonce/wip/options
Fix bug where two configurations had been created
Diffstat (limited to 'pkg/domain/infra/runtime_proxy.go')
-rw-r--r--pkg/domain/infra/runtime_proxy.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/runtime_proxy.go b/pkg/domain/infra/runtime_proxy.go
index fbe45ea8f..41193fd89 100644
--- a/pkg/domain/infra/runtime_proxy.go
+++ b/pkg/domain/infra/runtime_proxy.go
@@ -12,7 +12,7 @@ import (
// ContainerEngine Proxy will be EOL'ed after podman is separated from libpod repo
-func NewLibpodRuntime(flags *flag.FlagSet, opts entities.PodmanConfig) (entities.ContainerEngine, error) {
+func NewLibpodRuntime(flags *flag.FlagSet, opts *entities.PodmanConfig) (entities.ContainerEngine, error) {
r, err := GetRuntime(context.Background(), flags, opts)
if err != nil {
return nil, err