tag: Remove unnecessary flush call

This commit is contained in:
Michael Eischer 2021-08-07 22:26:09 +02:00
parent 3e1de52e0a
commit bba4c69a2a
1 changed files with 0 additions and 4 deletions

View File

@ -89,10 +89,6 @@ func changeTags(ctx context.Context, repo *repository.Repository, sn *restic.Sna
debug.Log("new snapshot saved as %v", id)
if err = repo.Flush(ctx); err != nil {
return false, err
}
// Remove the old snapshot.
h := restic.Handle{Type: restic.SnapshotFile, Name: sn.ID().String()}
if err = repo.Backend().Remove(ctx, h); err != nil {