2021-02-13 23:57:54 +00:00
|
|
|
Bugfix: Correct statistics for overlapping targets
|
2021-01-29 10:29:05 +00:00
|
|
|
|
|
|
|
A user reported that restic's statistics and progress information during backup
|
2021-02-13 23:57:54 +00:00
|
|
|
was not correctly calculated when the backup targets (files/dirs to save)
|
2021-01-29 10:29:05 +00:00
|
|
|
overlap. For example, consider a directory `foo` which contains (among others)
|
2021-02-13 23:57:54 +00:00
|
|
|
a file `foo/bar`. When `restic backup foo foo/bar` was run, restic counted the
|
2021-01-29 10:29:05 +00:00
|
|
|
size of the file `foo/bar` twice, so the completeness percentage as well as the
|
|
|
|
number of files was wrong. This is now corrected.
|
|
|
|
|
|
|
|
https://github.com/restic/restic/issues/3232
|
|
|
|
https://github.com/restic/restic/pull/3243
|