You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
report_builder.py line 77: except json.JSONDecodeError
json is not imported when user has orjson installed.
Btw, this bug was found when using multiprocessing.Pool on Windows. I guess the exception here is what you called "there’s no way to gracefully catch the exit of the process."
The text was updated successfully, but these errors were encountered:
Ah, interesting. Yes, there's nothing we can do to make multiprocessing.Pool work with viztracer. The bug however, is real, we should not catch json.JSONDecodeError when we are using orjson.
report_builder.py
line 77:except json.JSONDecodeError
json
is not imported when user hasorjson
installed.Btw, this bug was found when using
multiprocessing.Pool
on Windows. I guess the exception here is what you called "there’s no way to gracefully catch the exit of the process."The text was updated successfully, but these errors were encountered: