Skip to content

Commit

Permalink
Merge pull request #122 from JuliaParallel/jps/fault-handler-ioerror
Browse files Browse the repository at this point in the history
Treat IOError as unexpected worker exit
  • Loading branch information
jpsamaroo committed Apr 9, 2020
2 parents 5100fb5 + d40fd2c commit 7603820
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/fault-handler.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ check_exited_exception(res::CapturedException) =
check_exited_exception(res::RemoteException) =
check_exited_exception(res.captured)
check_exited_exception(res::ProcessExitedException) = true
check_exited_exception(res::Base.IOError) = true
check_exited_exception(res) = false

"""
Expand Down

0 comments on commit 7603820

Please sign in to comment.