mirror of
https://github.com/octoleo/restic.git
synced 2024-11-27 15:26:37 +00:00
73c9780321
Files were not included in the backup if the extended metadata for the file could not be read. This is rather drastic. Instead settle on returning a warning but still including the file in the backup.
16 lines
597 B
Plaintext
16 lines
597 B
Plaintext
Change: let `backup` store files with incomplete metadata
|
|
|
|
If restic failed to read the extended metadata for a file or folder while
|
|
creating a backup, then the file or folder was not included in the resulting
|
|
snapshot. Instead, only a warning message was printed along with exiting
|
|
with exit code 3.
|
|
|
|
Now, restic also includes items for which the extended metadata could not
|
|
be read in a snapshot. The warning message has been changed to read
|
|
```
|
|
incomplete metadata for /path/to/file: details on error
|
|
```
|
|
|
|
https://github.com/restic/restic/issues/4953
|
|
https://github.com/restic/restic/pull/4977
|