2024-08-31 15:28:24 +00:00
|
|
|
Change: Also back up files with incomplete metadata
|
2024-08-03 17:10:11 +00:00
|
|
|
|
2024-08-30 12:58:32 +00:00
|
|
|
If restic failed to read extended metadata for a file or folder during a
|
|
|
|
backup, then the file or folder was not included in the resulting snapshot.
|
|
|
|
Instead, a warning message was printed along with returning exit code 3 once
|
|
|
|
the backup was finished.
|
|
|
|
|
|
|
|
Now, restic also includes items for which the extended metadata could not be
|
|
|
|
read in a snapshot. The warning message has been updated to:
|
2024-08-03 17:10:11 +00:00
|
|
|
|
|
|
|
```
|
2024-08-30 12:58:32 +00:00
|
|
|
incomplete metadata for /path/to/file: <details about error>
|
2024-08-03 17:10:11 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
https://github.com/restic/restic/issues/4953
|
|
|
|
https://github.com/restic/restic/pull/4977
|