mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 04:47:51 +00:00
48a0d83143
Apparently SMB/CIFS on Linux/macOS returns somewhat random errnos when trying to sync a windows share which does not support calling fsync for a directory.
14 lines
590 B
Plaintext
14 lines
590 B
Plaintext
Bugfix: Fix directory sync errors related repositories accessed via SMB
|
|
|
|
On Linux and macOS accessing a repository via a SMB/CIFS mount resulted in
|
|
restic failing to save the lock file:
|
|
|
|
Save(<lock/071fe833f0>) returned error, retrying after 552.330144ms: sync /repo/locks: no such file or directory
|
|
Save(<lock/bf789d7343>) returned error, retrying after 552.330144ms: sync /repo/locks: invalid argument
|
|
|
|
This has been fixed by ignoring these error codes.
|
|
|
|
https://github.com/restic/restic/issues/3720
|
|
https://github.com/restic/restic/issues/3751
|
|
https://github.com/restic/restic/pull/3752
|