Skip to content

Commit

Permalink
Merge pull request #2389 from kubernetes-sigs/volumeid-info
Browse files Browse the repository at this point in the history
cleanup: print info error for volumeID parsing
  • Loading branch information
andyzhangx authored Feb 18, 2025
2 parents 92e09eb + e951155 commit 4df8f6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/azurefile/azurefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ func (d *Driver) GetAccountInfo(ctx context.Context, volumeID string, secrets, r
rgName, accountName, fileShareName, diskName, secretNamespace, subsID, err := GetFileShareInfo(volumeID)
if err != nil {
// ignore volumeID parsing error
klog.Warningf("parsing volumeID(%s) return with error: %v", volumeID, err)
klog.V(2).Infof("parsing volumeID(%s) return with error: %v", volumeID, err)
err = nil
}

Expand Down

0 comments on commit 4df8f6e

Please sign in to comment.