mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix panic on error looking up volume driver
(-‸ლ) Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
parent
6b06cc54d0
commit
5baf8a4118
1 changed files with 1 additions and 1 deletions
|
@ -568,7 +568,7 @@ func (s *VolumeStore) Remove(v volume.Volume) error {
|
|||
|
||||
vd, err := volumedrivers.GetDriver(v.DriverName())
|
||||
if err != nil {
|
||||
return &OpErr{Err: err, Name: vd.Name(), Op: "remove"}
|
||||
return &OpErr{Err: err, Name: v.DriverName(), Op: "remove"}
|
||||
}
|
||||
|
||||
logrus.Debugf("Removing volume reference: driver %s, name %s", v.DriverName(), name)
|
||||
|
|
Loading…
Reference in a new issue