From 041c0705e43003be2c0d100ca98379d0126b3935 Mon Sep 17 00:00:00 2001 From: aneesh-n <99904+aneesh-n@users.noreply.github.com> Date: Sat, 3 Aug 2024 16:19:59 -0600 Subject: [PATCH] Add changelog --- changelog/unreleased/pull-4980 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 changelog/unreleased/pull-4980 diff --git a/changelog/unreleased/pull-4980 b/changelog/unreleased/pull-4980 new file mode 100644 index 000000000..afa8a7406 --- /dev/null +++ b/changelog/unreleased/pull-4980 @@ -0,0 +1,10 @@ +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 ExtendedAttributes. +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