When attaching to local process, debugger no longer requires pathMappings. Currently the default configuration generated for attach to process by id adds path mappings.
Expected:
{
"name": "Attach pid",
"type": "python",
"request": "attach",
"processId": "${command:pickProcess}"
},
Actual:
{
"name": "Attach pid",
"type": "python",
"request": "attach",
"processId": "${command:pickProcess}",
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "."
}
]
}
When attaching to local process, debugger no longer requires pathMappings. Currently the default configuration generated for
attach to process by idadds path mappings.Expected:
Actual: