From cccfb954bd7321fbb25f234f0c9a2e8372646297 Mon Sep 17 00:00:00 2001 From: Rich Chiodo Date: Fri, 5 Aug 2022 10:58:20 -0700 Subject: [PATCH] Missed a thread to allow debugging --- src/debugpy/common/messaging.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/debugpy/common/messaging.py b/src/debugpy/common/messaging.py index 8980395d..eb9556d2 100644 --- a/src/debugpy/common/messaging.py +++ b/src/debugpy/common/messaging.py @@ -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):