diff options
-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 3b4710d96..acab219c7 100644 --- a/libpod/runtime_ctr.go +++ b/libpod/runtime_ctr.go @@ -61,7 +61,7 @@ func (r *Runtime) NewContainer(rSpec *spec.Spec, options ...CtrCreateOption) (c // Set up storage for the container if err := ctr.setupStorage(); err != nil { - return nil, errors.Wrapf(err, "error configuring storage for container") + return nil, err } defer func() { if err != nil { |