forked from TrueCloudLab/restic
backup: Fix ETA calculation for >= 100%
This commit is contained in:
parent
d8bbe5dc84
commit
846c2b6869
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ func (b *Backup) update(total, processed counter, errors uint, currentFiles map[
|
||||||
} else {
|
} else {
|
||||||
var eta string
|
var eta string
|
||||||
|
|
||||||
if secs > 0 {
|
if secs > 0 && processed.Bytes < total.Bytes {
|
||||||
eta = fmt.Sprintf(" ETA %s", formatSeconds(secs))
|
eta = fmt.Sprintf(" ETA %s", formatSeconds(secs))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue