Skip to content

Commit d86edb6

Browse files
committed
fix(server): keep interactive spawn trim-safe
Preserve the existing task error behavior while selecting the interactive pool. Wrapping server tasks in errormonitor pulls Base error-display I/O into JuliaC strict trim compilation on Julia 1.13 and produces unresolved dynamic calls.
1 parent 794af55 commit d86edb6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/HTTP.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ using URIs
2727
const VERSION = v"2.0.0"
2828

2929
macro _spawn_interactive(ex)
30-
return esc(:(errormonitor(Threads.@spawn :interactive $ex)))
30+
return esc(:(Threads.@spawn :interactive $ex))
3131
end
3232

3333
export WebSockets

0 commit comments

Comments
 (0)