-
-
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
julia 1.11.1: loading non-existing package in multi-process mode causes julia to hang #56345
Comments
It does not happen starting julia with a single |
I can confirm the issue on Julia v1.11.1, but it seems fixed on
The error is thrown almost immediately. |
For anyone interested in debugging this, the regression seems to have been introduced between v1.11.0-beta2 (good) and v1.11.0-rc1 (bad): v1.11.0-beta2...v1.11.0-rc1 |
This also seems to be "fixed" in #56228 in the sense that an error is thrown relatively quickly, but it involves the infamous
instead of just the
error. |
I can't repro this on #56228 0f7f762
|
@vtjnash is I can't say I tested the Pkg repl stuff before this with multiple |
I am not sure |
On Linux, Debian Buster, Julia 1.11.1 (started as
julia -p 4
)Today, I first typed:
all good.
then, by mistake, I typed
using Distributef
(instead of
using Distributed
) instead of rejecting the typo, julia goes on hold for quite a while and then it gives an infinite list of errors related to a number of workers even though I haven't quite done anything.Sometimes I can try and stop it by pressing ctrl-c or ctrl-x but on more than one occasion I had to kill the terminal window running julia.
Some other times it just crashes.
I have an older version of Julia (1.06 something I believe) on the same Linux machine that correctly rejects the typo with no further issues.
The text was updated successfully, but these errors were encountered: