mirror of
https://github.com/borgbackup/borg.git
synced 2026-03-05 15:00:42 -05:00
borg prune: improve progress display
the old progress output was kind of broken: Archiver() did output some progress when add_item was called. Archive.delete() did output progress for a single archive deletion but what we really want is a overall progress indication, advancing the progress for each deleted archive.
This commit is contained in:
parent
7af90d015e
commit
529bbfdeca
1 changed files with 4 additions and 2 deletions
|
|
@ -1564,8 +1564,10 @@ class Archiver:
|
|||
# set up counters for the progress display
|
||||
to_delete_len = len(to_delete)
|
||||
archives_deleted = 0
|
||||
pi = ProgressIndicatorPercent(total=len(to_delete), msg='Pruning archives %3.0f%%', msgid='prune')
|
||||
for archive in archives_checkpoints:
|
||||
if archive in to_delete:
|
||||
pi.show()
|
||||
if args.dry_run:
|
||||
if args.output_list:
|
||||
list_logger.info('Would prune: %s' % format_archive(archive))
|
||||
|
|
@ -1574,11 +1576,11 @@ class Archiver:
|
|||
archives_deleted += 1
|
||||
list_logger.info('Pruning archive: %s (%d/%d)' % (format_archive(archive),
|
||||
archives_deleted, to_delete_len))
|
||||
Archive(repository, key, manifest, archive.name, cache,
|
||||
progress=args.progress).delete(stats, forced=args.forced)
|
||||
Archive(repository, key, manifest, archive.name, cache).delete(stats, forced=args.forced)
|
||||
else:
|
||||
if args.output_list:
|
||||
list_logger.info('Keeping archive: %s' % format_archive(archive))
|
||||
pi.finish()
|
||||
if to_delete and not args.dry_run:
|
||||
manifest.write()
|
||||
repository.commit(save_space=args.save_space)
|
||||
|
|
|
|||
Loading…
Reference in a new issue