Merge pull request #106421 from houjun41544/20211115-volume

Fix the wrong log
This commit is contained in:
Kubernetes Prow Robot 2022-01-04 23:03:05 -08:00 committed by GitHub
commit 0f5e3d14bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,7 +98,7 @@ func changeFilePermission(filename string, fsGroup *int64, readonly bool, info o
err = os.Chmod(filename, info.Mode()|mask)
if err != nil {
klog.ErrorS(err, "Chown failed", "path", filename)
klog.ErrorS(err, "chmod failed", "path", filename)
}
return nil