-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
do not lock up addprocs on worker setup errors #32290
Closed
Closed
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
32b9b09
do not lock up addproc on worker setup errors
tanmaykm 0e4eee7
do not lock up addproc on worker setup timeout
tanmaykm a41d3e1
kill worker for shorter test run time
tanmaykm 984202c
document new behavior of addprocs
tanmaykm a0184b1
test connect timeout only when JULIA_TESTFULL==1
tanmaykm f4d111e
not fatal to fail to kill worker during deregister
tanmaykm 1bfb25a
handle possible timeout during connect to worker
tanmaykm c8a61ae
add tests for connect timeout
tanmaykm 91bd3de
reduce test time for connect timeout test
tanmaykm fad9307
rebase changes from master
tanmaykm d2b24df
show exception along with message when kill fails
tanmaykm 9452c99
add a verbose flag to switch off unnecessary msgs
tanmaykm 3319a29
close timer on exception to put into rr_ntfy_join
tanmaykm 60cd4e3
check exception type while testing connect timeout
tanmaykm c8c44ae
ensure we have workers for tests
tanmaykm 75a56fe
Update stdlib/Distributed/test/distributed_exec.jl
ViralBShah 0d86591
Merge branch 'master' into tan/par2
ViralBShah File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move put! outside the try/catch, and rethrow on unexpected error types
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The name
connect_error
may be misleading. The intention was to handle any error here in the same manner.