diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-01-18 10:49:01 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-09 15:01:34 +0000 |
commit | 6214be07c2bf82f90361f058ab0c7178b634ecf9 (patch) | |
tree | 34a1e85e4f6bfca99e4207f102c5c0d208a00289 /libpod/runtime_pod.go | |
parent | bf981fc8738ec5910efd54117677f8eacb7ca37e (diff) | |
download | podman-6214be07c2bf82f90361f058ab0c7178b634ecf9.tar.gz podman-6214be07c2bf82f90361f058ab0c7178b634ecf9.tar.bz2 podman-6214be07c2bf82f90361f058ab0c7178b634ecf9.zip |
Tear out pod containers map. Instead rely on state
This ensures that there is only one canonical place where
containers in a pod are stored, in the state itself.
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #268
Approved by: rhatdan
Diffstat (limited to 'libpod/runtime_pod.go')
-rw-r--r-- | libpod/runtime_pod.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/runtime_pod.go b/libpod/runtime_pod.go index 35c7f0642..d471b903f 100644 --- a/libpod/runtime_pod.go +++ b/libpod/runtime_pod.go @@ -24,7 +24,7 @@ func (r *Runtime) NewPod(options ...PodCreateOption) (*Pod, error) { return nil, ErrRuntimeStopped } - pod, err := newPod(r.lockDir) + pod, err := newPod(r.lockDir, r) if err != nil { return nil, errors.Wrapf(err, "error creating pod") } |