diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-29 14:13:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-29 14:13:09 -0700 |
commit | d110998744e816895b0a9d9bb90a02cd5d12df7b (patch) | |
tree | cbad3096c7e35c939a5f60de4238c673ad33ad80 /pkg | |
parent | ab5f52c0d2ce617f875ef69c9ae67381841a6514 (diff) | |
parent | 2fb6cc2ceac680350b403e6173926331d7904722 (diff) | |
download | podman-d110998744e816895b0a9d9bb90a02cd5d12df7b.tar.gz podman-d110998744e816895b0a9d9bb90a02cd5d12df7b.tar.bz2 podman-d110998744e816895b0a9d9bb90a02cd5d12df7b.zip |
Merge pull request #3907 from baude/commitcaps
dont panic when using varlink commit and uppercase image names
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/varlinkapi/images.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/varlinkapi/images.go b/pkg/varlinkapi/images.go index c184155a9..0bdbec177 100644 --- a/pkg/varlinkapi/images.go +++ b/pkg/varlinkapi/images.go @@ -563,7 +563,6 @@ func (i *LibpodAPI) Commit(call iopodman.VarlinkCall, name, imageName string, ch } c := make(chan error) - defer close(c) go func() { newImage, err = ctr.Commit(getContext(), imageName, options) @@ -571,6 +570,7 @@ func (i *LibpodAPI) Commit(call iopodman.VarlinkCall, name, imageName string, ch c <- err } c <- nil + close(c) }() // reply is the func being sent to the output forwarder. in this case it is replying |