mirror of
https://github.com/borgbase/vorta
synced 2025-02-21 22:06:57 +00:00
This commit is contained in:
parent
2b612d5142
commit
3aa3d96360
1 changed files with 2 additions and 1 deletions
|
@ -245,8 +245,9 @@ def get_mount_points(repo_url):
|
|||
mount_point = proc.cmdline()[idx + 1]
|
||||
mount_points[archive_name] = mount_point
|
||||
break
|
||||
except psutil.ZombieProcess:
|
||||
except (psutil.ZombieProcess, psutil.AccessDenied):
|
||||
# Getting process details may fail (e.g. zombie process on macOS)
|
||||
# or because the process is owned by another user.
|
||||
# Also see https://github.com/giampaolo/psutil/issues/783
|
||||
continue
|
||||
|
||||
|
|
Loading…
Reference in a new issue