I'm building lambdas using localstack un VScode and wanted to try [remote debugging](https://docs.localstack.cloud/user-guide/lambda-tools/debugging/#debugging-python-lambdas) the provided launch config below results in VScode throwing an empty error window ```json { "version": "0.2.0", "configurations": [ { "name": "Python: Remote Attach", "type": "python", "request": "attach", "connect": { "host": "localhost", "port": 19891 }, "pathMappings": [ { "localRoot": "${workspaceFolder}", "remoteRoot": "." } ] } ] } ``` only results in this uninformative error window from VScode when I try to run this - appears almost instantly  This is VScode version 1.94.2
I'm building lambdas using localstack un VScode and wanted to try remote debugging
the provided launch config below results in VScode throwing an empty error window
{ "version": "0.2.0", "configurations": [ { "name": "Python: Remote Attach", "type": "python", "request": "attach", "connect": { "host": "localhost", "port": 19891 }, "pathMappings": [ { "localRoot": "${workspaceFolder}", "remoteRoot": "." } ] } ] }only results in this uninformative error window from VScode when I try to run this - appears almost instantly

This is VScode version 1.94.2