mirror of
https://github.com/octoleo/restic.git
synced 2024-11-22 21:05:10 +00:00
backup: Fix ETA calculation for >= 100%
This commit is contained in:
parent
d8bbe5dc84
commit
846c2b6869
@ -147,7 +147,7 @@ func (b *Backup) update(total, processed counter, errors uint, currentFiles map[
|
||||
} else {
|
||||
var eta string
|
||||
|
||||
if secs > 0 {
|
||||
if secs > 0 && processed.Bytes < total.Bytes {
|
||||
eta = fmt.Sprintf(" ETA %s", formatSeconds(secs))
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user