2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-06 19:10:49 +00:00
restic/changelog/0.12.1_2021-08-03/pull-3427

14 lines
588 B
Plaintext
Raw Normal View History

2021-06-12 21:02:26 +00:00
Enhancement: `find --pack` fallback to index if data file is missing
2021-08-02 08:12:55 +00:00
When investigating a repository with missing data files, it might be useful to
determine affected snapshots before running `rebuild-index`. Previously,
2021-08-02 21:49:16 +00:00
`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 21:02:26 +00: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