Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Don't attempt to connect to dlv on stderr output (#1354)
Browse files Browse the repository at this point in the history
  • Loading branch information
DMarby authored and ramya-rao-a committed Nov 23, 2017
1 parent 89e1a18 commit ef53221
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/debugAdapter/goDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,10 +327,6 @@ class Delve {
this.debugProcess.stderr.on('data', chunk => {
let str = chunk.toString();
if (this.onstderr) { this.onstderr(str); }
if (!serverRunning) {
serverRunning = true;
connectClient(port, host);
}
});
this.debugProcess.stdout.on('data', chunk => {
let str = chunk.toString();
Expand Down

0 comments on commit ef53221

Please sign in to comment.