Skip to content
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

Warning during precompilation on Julia 1.10 #8

Closed
MichaelHatherly opened this issue Jan 15, 2024 · 0 comments · Fixed by #9
Closed

Warning during precompilation on Julia 1.10 #8

MichaelHatherly opened this issue Jan 15, 2024 · 0 comments · Fixed by #9
Assignees

Comments

@MichaelHatherly
Copy link
Collaborator

Precompilation still completes, but includes the following warning.

[pid 4450] waiting for IO to finish:
 Handle type        uv_handle_t->data
 timer              0x10fffe940->0x14d9dfd30
 timer              0x10ff55f10->0x14d9ecb80
This means that a package has started a background task or event source that has not finished running. For precompilation to complete successfully, the event source needs to be closed explicitly. See the developer documentation on fixing precompilation hangs for more help.
  1 dependency successfully precompiled in 11 seconds. 44 already precompiled.
  1 dependency had output during precompilation:
┌ QuartoNotebookRunner
│  [Output was shown above]
└

https://docs.julialang.org/en/v1/devdocs/precompile_hang/

Appears to be due to Malt workers taking some time to close. Diagnose whether it's even worth having those parts precompiled. Perhaps just selectively precompile the surrounding code that doesn't directly interact with the Server objects.

@MichaelHatherly MichaelHatherly self-assigned this Jan 15, 2024
MichaelHatherly added a commit that referenced this issue Jan 15, 2024
1.10 during precompilation has some warnings due to tasks hanging. This is due to the `Malt` workers. Skip these parts of the precompilation so that we don't run into that warning.

Fixes #8.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant