You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]
└
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.
The text was updated successfully, but these errors were encountered:
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.
Precompilation still completes, but includes the following warning.
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 theServer
objects.The text was updated successfully, but these errors were encountered: