Don't terminal debuggee

This commit is contained in:
Ben Jackson 2020-02-04 13:36:12 +00:00
commit 0e4cad302d

View file

@ -591,7 +591,8 @@ class DebugSession( object ):
arguments = {}
if self._server_capabilities.get( 'supportTerminateDebuggee' ):
arguments[ 'terminateDebugee' ] = True
# If we attached, we should _not_ terminate the debuggee
arguments[ 'terminateDebuggee' ] = False
self._connection.DoRequest( handler, {
'command': 'disconnect',