Debugging Hangs on step into / step over with below error in the console
When I run its works fine , but when I try to debug hits breakpoint after step over it hangs.
Pycharm version : 2024.1.4 (Professional Edition)
import sys; print('Python %s on %s' % (sys.version, sys.platform))
C:\Python38\python.exe "C:/Program Files/JetBrains/PyCharm 2022.3.2/plugins/python/helpers/pydev/pydevd.py" --multiprocess --save-signatures --qt-support=auto --client 127.0.0.1 --port 55834 --file D:\TFS\Restricted\Other\Neuro\iNeuroTriage\UI\UI.py
Connected to pydev debugger (build 241.18034.82)
Traceback (most recent call last):
File "C:\Program Files\JetBrains\PyCharm 2022.3.2\plugins\python\helpers\pydev\_pydevd_bundle\pydevd_comm.py", line 1903, in do_it
self.py_db.value_resolve_thread_list.append(t)
AttributeError: 'PyDB' object has no attribute 'value_resolve_thread_list'
Traceback (most recent call last):
File "C:\Program Files\JetBrains\PyCharm 2022.3.2\plugins\python\helpers\pydev\_pydevd_bundle\pydevd_process_net_command.py", line 157, in process_net_command
py_db.maybe_kill_active_value_resolve_threads()
AttributeError: 'PyDB' object has no attribute 'maybe_kill_active_value_resolve_threads'

Please sign in to leave a comment.
From the error provided it looks like https://youtrack.jetbrains.com/issue/PY-72009/Cant-debug-a-multiprocess-script-in-PyCharm
Can you check if it works on 2024.2 EAP version available at the Toolbox App
Finally working in new 2024.2 EAP version :)
Thanks for the quick response