Skip to content

Commit

Permalink
cleanup: print info error for volumeID parsing error
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx authored and k8s-infra-cherrypick-robot committed Feb 18, 2025
1 parent ddf918f commit eec1777
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 @@ -727,7 +727,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 eec1777

Please sign in to comment.