-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Debugger Broken | v2021.12.1559732655 #18453
Comments
I am not sure whether your issue is the same with me. my issue is when i debug a python file on remote server(with conda env), the debugger exit with no any reason. is it the same with you? |
I have the same issue. I downgrade the Python Extention to v2021.12.1559732655 and solved the issue. Maybe it's a bug of v2021.12.1559732655. |
Same issue here. Spent hours on this. The thing is that there is also no clue for the crash in any of the log windows |
I am having this issue as well |
same issue , downgrade the Python extension to v2021.12.1559732655 works. |
same issue on v2022.0.1786462952 , debug not working, with no error log, and Python Debug Console didn't show. |
same problem here, downgrading to v2021.12.1559732655 works as well. While this is not fixed, is there a way to specify v2021.12.1559732655 in remote.SSH.defaultExtensions? |
same, i can't debug python on v2022.0.1786462952. but who can tell me how to downgrade the version? |
go the extension page > down arrow next to Uninstall > install another version |
thanks, it works. |
unfortunately i have the same issue :) Fortunately i allready knew about downgrading :) If one tries to debug a unittest it just runs forever |
same issue here, a downgrade solved the problem! |
I'm having the same problem as well. In my case I'm debugging the code inside a Docker container. What I've found so far is this:
|
Duplicate of #18436 |
Launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Module",
"type": "python",
"request": "launch",
"module": "app.run",
"console": "integratedTerminal"
}
]
}
Simple module run that ends up spinning up a Flask server on port 80 I need to debug. Was working great in the prior version, v2021.12.1559732655.
The latest version v2022.0.1786462952 looks like it tries to spin up debugging, but it quite simply just goes away almost immediately. I'm on the latest Windows 11. Just to clarify one more time, the prior version works fine.
Prior version when hitting F-5 moves you to a terminal and starts the server. The new version doesn't do anything at all.
The text was updated successfully, but these errors were encountered: