mirror of
https://github.com/octoleo/restic.git
synced 2024-11-23 21:27:34 +00:00
19f487750e
Gracefully handle errors while checking for EA and add debug logs.
14 lines
616 B
Plaintext
14 lines
616 B
Plaintext
Bugfix: Skip EA processing in Windows for volumes that do not support EA
|
|
|
|
Restic was failing to backup files on some windows paths like network
|
|
drives because of errors while fetching extended attributes.
|
|
Either they return error codes like windows.E_NOT_SET or
|
|
windows.ERROR_INVALID_FUNCTION or it results in slower backups.
|
|
Restic now completely skips the attempt to fetch extended attributes
|
|
for such volumes where it is not supported.
|
|
|
|
https://github.com/restic/restic/pull/4980
|
|
https://github.com/restic/restic/pull/4998
|
|
https://github.com/restic/restic/issues/4955
|
|
https://github.com/restic/restic/issues/4950
|