-
Notifications
You must be signed in to change notification settings - Fork 524
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
Running Python project with Ctrl+F5 still hits breakpoint #2075
Comments
Not a very serious issue IMO. |
I'll investigate this likely next week, but I plan to try and run each of the projects with CTRL + F5 on the regular python Launch configs for the respective languages and see if it skips over a breakpoint. Then I'll try it within our Docker launch config for each. If I am able to repro this issue, what are the next steps? |
We need to decide if it's actually important enough to matter. 😄 |
For Python, running with debugging can have a substantial perf penalty in some cases - it's not a cooperative runtime like .NET or Node.js, so tracing is not zero-cost even sans breakpoints. It's probably an easy fix - check whether "noDebug" property in the debug config that you get from VSCode is propagated to debugpy adapter. |
Yup, indeed that was the case so I'll mark this fixed by #2093. |
OS: All
Build Version: 1.3.1-alpha
Repro Steps:
Expect:
Run the project successfully without breakpoint hit.
Actual:
It will still hits the breakpoint.
The text was updated successfully, but these errors were encountered: