diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-07-10 12:35:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-10 12:35:48 +0200 |
commit | 2ac8c6953481eb7391a6a7594709811f7ae3167f (patch) | |
tree | a72386000d844e7b9c6f1dd79bf5b77f63a45fd2 /libpod/storage.go | |
parent | d9cd0032f7478e625329326d7593162a9f1e8c1e (diff) | |
parent | 4b784b377cea542228278f2ea501baa32b885be7 (diff) | |
download | podman-2ac8c6953481eb7391a6a7594709811f7ae3167f.tar.gz podman-2ac8c6953481eb7391a6a7594709811f7ae3167f.tar.bz2 podman-2ac8c6953481eb7391a6a7594709811f7ae3167f.zip |
Merge pull request #6917 from mheon/retErr_for_libpod
Remove all instances of named return "err" from Libpod
Diffstat (limited to 'libpod/storage.go')
-rw-r--r-- | libpod/storage.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libpod/storage.go b/libpod/storage.go index be79b3fc0..e497d0daf 100644 --- a/libpod/storage.go +++ b/libpod/storage.go @@ -66,7 +66,7 @@ func (metadata *RuntimeContainerMetadata) SetMountLabel(mountLabel string) { // CreateContainerStorage creates the storage end of things. We already have the container spec created // TO-DO We should be passing in an Image object in the future. -func (r *storageService) CreateContainerStorage(ctx context.Context, systemContext *types.SystemContext, imageName, imageID, containerName, containerID string, options storage.ContainerOptions) (cinfo ContainerInfo, err error) { +func (r *storageService) CreateContainerStorage(ctx context.Context, systemContext *types.SystemContext, imageName, imageID, containerName, containerID string, options storage.ContainerOptions) (_ ContainerInfo, retErr error) { span, _ := opentracing.StartSpanFromContext(ctx, "createContainerStorage") span.SetTag("type", "storageService") defer span.Finish() @@ -132,9 +132,9 @@ func (r *storageService) CreateContainerStorage(ctx context.Context, systemConte // If anything fails after this point, we need to delete the incomplete // container before returning. defer func() { - if err != nil { - if err2 := r.store.DeleteContainer(container.ID); err2 != nil { - logrus.Infof("%v deleting partially-created container %q", err2, container.ID) + if retErr != nil { + if err := r.store.DeleteContainer(container.ID); err != nil { + logrus.Infof("%v deleting partially-created container %q", err, container.ID) return } |