diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-04-16 14:12:12 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-04-26 22:23:49 +0200 |
commit | f49e0c19ede56b1cc6b1d44ea9ba8b336cd22658 (patch) | |
tree | 9a68b96d5f85adcc67189e97e1c788786c20b32c /cmd/podman/main_local.go | |
parent | 525f0b30ac280565a1f98fd4208821a4984a7515 (diff) | |
download | podman-f49e0c19ede56b1cc6b1d44ea9ba8b336cd22658.tar.gz podman-f49e0c19ede56b1cc6b1d44ea9ba8b336cd22658.tar.bz2 podman-f49e0c19ede56b1cc6b1d44ea9ba8b336cd22658.zip |
runtime: pass down the context
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'cmd/podman/main_local.go')
-rw-r--r-- | cmd/podman/main_local.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/main_local.go b/cmd/podman/main_local.go index 42a8e434e..5afd51e28 100644 --- a/cmd/podman/main_local.go +++ b/cmd/podman/main_local.go @@ -112,7 +112,7 @@ func setupRootless(cmd *cobra.Command, args []string) error { MainGlobalOpts, remoteclient, } - runtime, err := libpodruntime.GetRuntime(&podmanCmd) + runtime, err := libpodruntime.GetRuntime(getContext(), &podmanCmd) if err != nil { return errors.Wrapf(err, "could not get runtime") } |