Commit 089951e7 authored by Justin Santa Barbara's avatar Justin Santa Barbara

Fix typo in comment: succefully -> successfully

parent 6c87a4be
...@@ -260,7 +260,7 @@ func detachDiskAndVerify(c *awsElasticBlockStoreCleaner) { ...@@ -260,7 +260,7 @@ func detachDiskAndVerify(c *awsElasticBlockStoreCleaner) {
// Log error, if any, and continue checking periodically. // Log error, if any, and continue checking periodically.
glog.Errorf("Error verifying EBS Disk (%q) is detached: %v", c.volumeID, err) glog.Errorf("Error verifying EBS Disk (%q) is detached: %v", c.volumeID, err)
} else if allPathsRemoved { } else if allPathsRemoved {
// All paths to the PD have been succefully removed // All paths to the PD have been successfully removed
unmountPDAndRemoveGlobalPath(c) unmountPDAndRemoveGlobalPath(c)
glog.Infof("Successfully detached EBS Disk %q.", c.volumeID) glog.Infof("Successfully detached EBS Disk %q.", c.volumeID)
return return
......
...@@ -262,7 +262,7 @@ func detachDiskAndVerify(c *gcePersistentDiskCleaner) { ...@@ -262,7 +262,7 @@ func detachDiskAndVerify(c *gcePersistentDiskCleaner) {
// Log error, if any, and continue checking periodically. // Log error, if any, and continue checking periodically.
glog.Errorf("Error verifying GCE PD (%q) is detached: %v", c.pdName, err) glog.Errorf("Error verifying GCE PD (%q) is detached: %v", c.pdName, err)
} else if allPathsRemoved { } else if allPathsRemoved {
// All paths to the PD have been succefully removed // All paths to the PD have been successfully removed
unmountPDAndRemoveGlobalPath(c) unmountPDAndRemoveGlobalPath(c)
glog.Infof("Successfully detached GCE PD %q.", c.pdName) glog.Infof("Successfully detached GCE PD %q.", c.pdName)
return return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment