We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c4e65f commit 661a9eeCopy full SHA for 661a9ee
src/debugAdapter.ts
@@ -35,9 +35,9 @@ function startDebugging() {
35
// the connection details for the debug service
36
const sessionDetails = utils.readSessionFile(debugSessionFilePath);
37
38
- // Delete the session file after it has been read so that
39
- // it isn't used mistakenly by another debug session
40
- utils.deleteSessionFile(debugSessionFilePath);
+ // TODO: store session details into an in-memory store that can be shared between
+ // the debug adapter and client extension
+ // and then clean up the session details file.
41
42
// Establish connection before setting up the session
43
debugAdapterLogWriter.write("Connecting to pipe: " + sessionDetails.debugServicePipeName + "\r\n");
0 commit comments