I am trying to attach VSCodium (basically VSCode without MS’s tracking) to a running process, but keep getting a “Timed out waiting for debug server to connect” error message. The logs within ~/.vscode-oss/extensions/ms-python.python-2020.8.105369
aren’t any more informative.
The documentation looks like it should just work, and it has worked for others before. Has something changed in macOS Catalina (10.15.7), maybe a permissions thing? Or am I missing something else entirely?
This is my launch.json
:
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Attach using Process Id",
"type": "python",
"request": "attach",
"processId": "${command:pickProcess}",
"logToFile": true
}
]
}