Skip to content

Commit 270d952

Browse files
authored
Merge pull request kubernetes#80844 from zgfh/patch-7
cleanup: log message typo fix
2 parents fc05c9d + f0b18f7 commit 270d952

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/volume/azure_dd/azure_common_windows.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func findDiskByLun(lun int, iohandler ioHandler, exec mount.Exec) (string, error
7070
continue
7171
}
7272

73-
klog.V(4).Infof("found a disk, locatin: %q, lun: %q", location, arr[arrLen-1])
73+
klog.V(4).Infof("found a disk, location: %q, lun: %q", location, arr[arrLen-1])
7474
//last element of location field is LUN number, e.g.
7575
// "location": "Integrated : Adapter 3 : Port 0 : Target 0 : LUN 1"
7676
l, err := strconv.Atoi(arr[arrLen-1])
@@ -80,7 +80,7 @@ func findDiskByLun(lun int, iohandler ioHandler, exec mount.Exec) (string, error
8080
}
8181

8282
if l == lun {
83-
klog.V(4).Infof("found a disk and lun, locatin: %q, lun: %d", location, lun)
83+
klog.V(4).Infof("found a disk and lun, location: %q, lun: %d", location, lun)
8484
if d, ok := v["number"]; ok {
8585
if diskNum, ok := d.(float64); ok {
8686
klog.V(2).Infof("azureDisk Mount: got disk number(%d) by LUN(%d)", int(diskNum), lun)

0 commit comments

Comments
 (0)