Skip to content

Commit 7e7fea2

Browse files
authored
Merge pull request #1170 from leonardoce/fix-msg
Fix typo in error message message
2 parents 5ad0cfb + 8a60c40 commit 7e7fea2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/common-controller/groupsnapshot_controller_helper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ func (ctrl *csiSnapshotCommonController) updateGroupSnapshotStatus(groupSnapshot
625625

626626
volumeSnapshotContent, err := ctrl.contentLister.Get(contentRef.VolumeSnapshotContentRef.Name)
627627
if err != nil {
628-
return nil, fmt.Errorf("failed to get group snapshot content %s from group snapshot content store: %v", contentRef.VolumeSnapshotContentRef.Name, err)
628+
return nil, fmt.Errorf("failed to get snapshot content %s from snapshot content store: %v", contentRef.VolumeSnapshotContentRef.Name, err)
629629
}
630630
pvcVolumeSnapshotRefList = append(pvcVolumeSnapshotRefList, crdv1alpha1.PVCVolumeSnapshotPair{
631631
VolumeSnapshotRef: v1.LocalObjectReference{

0 commit comments

Comments
 (0)