Sfoglia il codice sorgente

Merge pull request #38305 from OmriShiv/master

fix typo
Sebastiaan van Stijn 6 anni fa
parent
commit
ad1354ffb4
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      container/container_unix.go

+ 1 - 1
container/container_unix.go

@@ -382,7 +382,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)