Skip to content

Commit

Permalink
Use at-async instead of Threads spawn in non-interactive case
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Nov 9, 2022
1 parent 1d02e0b commit f4cd055
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Servers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ end
end
else
macro _spawn_interactive(ex)
esc(:(Threads.@spawn $ex))
esc(:(@async $ex))
end
end

Expand Down

0 comments on commit f4cd055

Please sign in to comment.