diff --git a/changelog/unreleased/pull-4167 b/changelog/unreleased/pull-4167 new file mode 100644 index 000000000..c60d7bc0c --- /dev/null +++ b/changelog/unreleased/pull-4167 @@ -0,0 +1,6 @@ +Bugfix: ETA was missing from `backup` progress bar + +A regression in restic 0.15.0 caused the ETA to be missing from the progress +bar displayed by the `backup` command. This has been fixed. + +https://github.com/restic/restic/pull/4167 diff --git a/internal/ui/backup/progress.go b/internal/ui/backup/progress.go index 71facda4c..720a2a58f 100644 --- a/internal/ui/backup/progress.go +++ b/internal/ui/backup/progress.go @@ -199,6 +199,7 @@ func (p *Progress) ReportTotal(item string, s archiver.ScanStats) { p.scanStarted = true if item == "" { + p.scanFinished = true p.printer.ReportTotal(item, p.start, s) } }