Skip to content

Commit

Permalink
raise EIO in the exception_handler
Browse files Browse the repository at this point in the history
  • Loading branch information
nktknshn committed Sep 4, 2020
1 parent ea966c4 commit b654d70
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tgmount/tgmount/tgvfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ async def inner_function(*args, **kwargs):
raise
except Exception:
logvfs.error(traceback.format_exc())
raise pyfuse3.FUSEError(errno.EIO)

return inner_function

Expand Down

0 comments on commit b654d70

Please sign in to comment.