Skip to content

Commit dd8a424

Browse files
authored
Fall back to "copy" strategy if linking throws an EAGAIN error (#338)
add EAGAIN to list of handled errors
1 parent 17e3943 commit dd8a424

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/dvc_objects/fs/generic.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,7 @@ def _try_links(
299299
errno.ENOTTY,
300300
errno.ENOSYS,
301301
errno.EINVAL,
302+
errno.EAGAIN,
302303
):
303304
raise
304305
error = exc

0 commit comments

Comments
 (0)