From f4cd0557269cee633813c7af5dc87093a3c0295b Mon Sep 17 00:00:00 2001 From: Jacob Quinn Date: Wed, 9 Nov 2022 00:02:12 -0700 Subject: [PATCH] Use at-async instead of Threads spawn in non-interactive case --- src/Servers.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Servers.jl b/src/Servers.jl index 6764300fd..3b804527a 100644 --- a/src/Servers.jl +++ b/src/Servers.jl @@ -331,7 +331,7 @@ end end else macro _spawn_interactive(ex) - esc(:(Threads.@spawn $ex)) + esc(:(@async $ex)) end end