diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2017-11-24 13:39:29 -0500 |
---|---|---|
committer | Matthew Heon <matthew.heon@gmail.com> | 2017-12-04 13:39:44 -0500 |
commit | abfd18b0db8cb0ea331d90d702eab19e2157b973 (patch) | |
tree | fb0c9c3e941d0b647af9fe701e535d5db816c41f /libpod/runtime_ctr.go | |
parent | 750fc239b5da8e3f2792ae33f46a671ddf4622e3 (diff) | |
download | podman-abfd18b0db8cb0ea331d90d702eab19e2157b973.tar.gz podman-abfd18b0db8cb0ea331d90d702eab19e2157b973.tar.bz2 podman-abfd18b0db8cb0ea331d90d702eab19e2157b973.zip |
Move containers to file locks from c/storage
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'libpod/runtime_ctr.go')
-rw-r--r-- | libpod/runtime_ctr.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/runtime_ctr.go b/libpod/runtime_ctr.go index 5fb29abb5..793bb3e65 100644 --- a/libpod/runtime_ctr.go +++ b/libpod/runtime_ctr.go @@ -30,7 +30,7 @@ func (r *Runtime) NewContainer(spec *spec.Spec, options ...CtrCreateOption) (c * return nil, ErrRuntimeStopped } - ctr, err := newContainer(spec) + ctr, err := newContainer(spec, r.locksDir) if err != nil { return nil, err } |