mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
cephfs: replace Errorf with util.ErrorLog in cleanupClone
replace Errorf with util.ErrorLog in cleanupCloneFromSubvolumeSnapshot for context based logging. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
parent
e1fb708d48
commit
3fa512617b
@ -140,13 +140,13 @@ func cleanupCloneFromSubvolumeSnapshot(ctx context.Context, volID, cloneID volum
|
|||||||
if snapInfo.Protected == snapshotIsProtected {
|
if snapInfo.Protected == snapshotIsProtected {
|
||||||
err = unprotectSnapshot(ctx, parentVolOpt, cr, snapShotID, volID)
|
err = unprotectSnapshot(ctx, parentVolOpt, cr, snapShotID, volID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
klog.Errorf(util.Log(ctx, "failed to unprotect snapshot %s %v"), snapShotID, err)
|
util.ErrorLog(ctx, "failed to unprotect snapshot %s %v", snapShotID, err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
err = deleteSnapshot(ctx, parentVolOpt, cr, snapShotID, volID)
|
err = deleteSnapshot(ctx, parentVolOpt, cr, snapShotID, volID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
klog.Errorf(util.Log(ctx, "failed to delete snapshot %s %v"), snapShotID, err)
|
util.ErrorLog(ctx, "failed to delete snapshot %s %v", snapShotID, err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
Loading…
Reference in New Issue
Block a user