Skip to content

Commit 19cec9f

Browse files
authored
Merge pull request #427 from simvue-io/hotfix/no-hang-on-api-call
Do not join threads in online dispatch callback
2 parents 60d6761 + d6a6961 commit 19cec9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

simvue/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def _online_dispatch_callback(
382382
url=_url, headers=_msgpack_header, data=_data_bin, is_json=False
383383
)
384384
except (ValueError, RuntimeError) as e:
385-
self._error(f"{e}")
385+
self._error(f"{e}", join_threads=False)
386386
return
387387

388388
return (

0 commit comments

Comments
 (0)