Skip to content

Commit

Permalink
Merge pull request #8127 from ThomasWaldmann/ebusy-1.4
Browse files Browse the repository at this point in the history
create: deal with EBUSY, fixes #8123
  • Loading branch information
ThomasWaldmann committed Feb 25, 2024
2 parents a732931 + a88c3d9 commit 5017d92
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/borg/archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ def __exit__(self, exc_type, exc_val, exc_tb):
E_MAP = {
errno.EPERM: BackupPermissionError,
errno.EACCES: BackupPermissionError,
errno.EBUSY: BackupPermissionError,
errno.ENOENT: BackupFileNotFoundError,
errno.EIO: BackupIOError,
}
Expand Down

0 comments on commit 5017d92

Please sign in to comment.