Browse code

fix typo

Signed-off-by: Omri Shiv <Omri.Shiv@teradata.com>

Omri Shiv authored on 2018/12/01 05:58:10
Showing 1 changed files
... ...
@@ -382,7 +382,7 @@ func (container *Container) DetachAndUnmount(volumeEventLog func(name, action st
382 382
 
383 383
 	for _, mountPath := range mountPaths {
384 384
 		if err := mount.Unmount(mountPath); err != nil {
385
-			logrus.Warnf("%s unmountVolumes: Failed to do lazy umount fo volume '%s': %v", container.ID, mountPath, err)
385
+			logrus.Warnf("%s unmountVolumes: Failed to do lazy umount for volume '%s': %v", container.ID, mountPath, err)
386 386
 		}
387 387
 	}
388 388
 	return container.UnmountVolumes(volumeEventLog)