diff --git a/br/pkg/aws/ebs.go b/br/pkg/aws/ebs.go index cd82314226857..b53248cb41c01 100644 --- a/br/pkg/aws/ebs.go +++ b/br/pkg/aws/ebs.go @@ -337,7 +337,7 @@ func (e *EC2Session) waitDataFSREnabled(snapShotIDs []*string, targetAZ string) log.Info("starts check fsr pending snapshots", zap.Any("snapshots", pendingSnapshots), zap.String("available zone", targetAZ)) for { if len(pendingSnapshots) == 0 { - log.Info("all snapshots fsr enablement is finished", zap.String("available zone", targetAZ)) + log.Info("all snapshots in current batch fsr enablement is finished", zap.String("available zone", targetAZ), zap.Any("snapshots", snapShotIDs)) return nil } diff --git a/br/pkg/task/restore_ebs_meta.go b/br/pkg/task/restore_ebs_meta.go index 7dbad5960cb17..8c87aa669ef5d 100644 --- a/br/pkg/task/restore_ebs_meta.go +++ b/br/pkg/task/restore_ebs_meta.go @@ -241,7 +241,9 @@ func (h *restoreEBSMetaHelper) restoreVolumes(progress glue.Progress) (map[strin if h.cfg.UseFSR { err = ec2Session.DisableDataFSR(snapshotsIDsMap) - log.Error("disable fsr failed", zap.Error(err)) + if err != nil { + log.Error("disable fsr failed", zap.Error(err)) + } } }()