We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4791c7 commit 8bcbc67Copy full SHA for 8bcbc67
daemon/graphdriver/devmapper/driver.go
@@ -151,7 +151,7 @@ func (d *Driver) Remove(id string) error {
151
152
// This assumes the device has been properly Get/Put:ed and thus is unmounted
153
if err := d.DeviceSet.DeleteDevice(id, false); err != nil {
154
- return fmt.Errorf("failed to remove device %v:%v", id, err)
+ return fmt.Errorf("failed to remove device %s: %v", id, err)
155
}
156
157
mp := path.Join(d.home, "mnt", id)
0 commit comments