1
0
mirror of https://github.com/restic/restic.git synced 2024-07-04 09:00:54 +02:00
restic/changelog/unreleased/pull-3427

14 lines
595 B
Plaintext
Raw Normal View History

2021-06-12 23:02:26 +02:00
Enhancement: `find --pack` fallback to index if data file is missing
2021-08-02 10:12:55 +02:00
When investigating a repository with missing data files, it might be useful to
determine affected snapshots before running `rebuild-index`. Previously,
`restic find --pack pack-id` returned no data as it required accessing the data
file. Now, if the necessary data is still available in the repository index, it
gets retrieved from there.
2021-06-12 23:02:26 +02:00
The command now also supports looking up multiple pack files in a single `find`
run.
https://github.com/restic/restic/pull/3427
https://forum.restic.net/t/missing-packs-not-found/2600