diff options
author | TomSweeneyRedHat <tsweeney@redhat.com> | 2018-04-14 17:32:49 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-04-16 15:18:38 +0000 |
commit | 6c5ebb0315fc6527c0d75ca53fb6b027d20802a5 (patch) | |
tree | b82c25f9efa375b87152fe4c8cc12b8d0b954f6c /libpod/container_commit.go | |
parent | fa8442e4a063b9a074cd2d17effdf5de138f90cb (diff) | |
download | podman-6c5ebb0315fc6527c0d75ca53fb6b027d20802a5.tar.gz podman-6c5ebb0315fc6527c0d75ca53fb6b027d20802a5.tar.bz2 podman-6c5ebb0315fc6527c0d75ca53fb6b027d20802a5.zip |
Change container.locked to batched
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Closes: #619
Approved by: mheon
Diffstat (limited to 'libpod/container_commit.go')
-rw-r--r-- | libpod/container_commit.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_commit.go b/libpod/container_commit.go index 7ad393b6c..bfdfb6ce4 100644 --- a/libpod/container_commit.go +++ b/libpod/container_commit.go @@ -25,7 +25,7 @@ type ContainerCommitOptions struct { // Commit commits the changes between a container and its image, creating a new // image func (c *Container) Commit(destImage string, options ContainerCommitOptions) (*image.Image, error) { - if !c.locked { + if !c.batched { c.lock.Lock() defer c.lock.Unlock() |