Replies: 1 comment
-
We don't have a setting. Please open a feature request if you would like to have such a feature. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As part of my debugging workflow, some of my projects have initialization processes that require clean-up prior to exit (e.g., pytest unit test fixtures, context managers). When I terminate my debugging session, the debugger sends a SIGKILL to the processes it’s attached to and this cleanup ultimately doesn't occur.
Is there a configuration option somewhere that will have the debugger use SIGTERM instead?
It does look like this functionality was accounted for in the vscode debug adapter spec here. I'm inclined to think that the vscode-python debugger doesn't provide the
supportTerminateRequest
capability? Should it?Beta Was this translation helpful? Give feedback.
All reactions