mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 04:47:51 +00:00
2c07f7fff3
The `stats` command checks inodes to not count hardlinked files multiple times into the restore size. This check applies across all snapshots and not only within snapshots. As a result the result size was far too low when calculating it for multiple snapshots and it would vary depending on the order in which snapshots were listed.
9 lines
389 B
Plaintext
9 lines
389 B
Plaintext
Bugfix: `stats` fix restore size calculation for multiple snapshots
|
|
|
|
Since restic 0.10.0 the restore size calculated by the `stats` command for
|
|
multiple snapshots was too low. The hardlink detection was accidentally applied
|
|
across multiple snapshots and thus ignored many files. This has been fixed.
|
|
|
|
https://github.com/restic/restic/issues/3736
|
|
https://github.com/restic/restic/pull/3740
|