Skip to content

Commit

Permalink
Stop tracing threads
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiSakuma committed Nov 1, 2023
1 parent 1d33d9e commit 4ef3963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nextline/spawned/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def _compile_and_run(hook: PluginManager) -> RunResult:
return RunResult(ret=None, exc=exc)
trace_func = hook.hook.create_trace_func()
try:
with sys_trace(trace_func=trace_func):
with sys_trace(trace_func=trace_func, thread=False):
ret = func()
return RunResult(ret=ret, exc=None)
except BaseException as exc:
Expand Down

0 comments on commit 4ef3963

Please sign in to comment.