Merge pull request #1009 from rchiodo/rchiodo/missed_thread_for_self_trace

Missed a thread to allow debugging
This commit is contained in:
Rich Chiodo 2022-08-05 13:36:31 -07:00 committed by GitHub
commit 6e247fb17b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1410,8 +1410,7 @@ class JsonMessageChannel(object):
target=self._run_handlers,
name=f"{self} message handler",
)
self._handler_thread.pydev_do_not_trace = True
self._handler_thread.is_pydev_daemon_thread = True
hide_thread_from_debugger(self._handler_thread)
self._handler_thread.start()
def _run_handlers(self):