From 51371cb25220f530414d6c2b5aca4d34e35da7ef Mon Sep 17 00:00:00 2001 From: Omri Shiv Date: Fri, 30 Nov 2018 12:58:10 -0800 Subject: [PATCH] fix typo Signed-off-by: Omri Shiv (cherry picked from commit fe1083d4622658e9e5bf7319d0f94873019fced2) Upstream-commit: b941f081523cce7defafd4457f380442e10fa345 Component: engine --- components/engine/container/container_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/container/container_unix.go b/components/engine/container/container_unix.go index 7ee0a7e7da..592a6dc375 100644 --- a/components/engine/container/container_unix.go +++ b/components/engine/container/container_unix.go @@ -381,7 +381,7 @@ func (container *Container) DetachAndUnmount(volumeEventLog func(name, action st for _, mountPath := range mountPaths { if err := mount.Unmount(mountPath); err != nil { - logrus.Warnf("%s unmountVolumes: Failed to do lazy umount fo volume '%s': %v", container.ID, mountPath, err) + logrus.Warnf("%s unmountVolumes: Failed to do lazy umount for volume '%s': %v", container.ID, mountPath, err) } } return container.UnmountVolumes(volumeEventLog)