We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 711c52b commit 4c54222Copy full SHA for 4c54222
src/debugAdapter.ts
@@ -32,7 +32,7 @@ let sessionDetails = utils.readSessionFile();
32
33
// Establish connection before setting up the session
34
debugAdapterLogWriter.write("Connecting to port: " + sessionDetails.debugServicePort + "\r\n");
35
-let debugServiceSocket = net.connect(sessionDetails.debugServicePort);
+let debugServiceSocket = net.connect(sessionDetails.debugServicePort, '127.0.0.1');
36
37
// Write any errors to the log file
38
debugServiceSocket.on(
0 commit comments