Skip to content

Commit dbd829a

Browse files
committed
read stdout of python process #203, #52
1 parent 27d1247 commit dbd829a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/client/debugger/DebugClients/LocalDebugClient.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,10 @@ export class LocalDebugClient extends DebugClient {
123123
}
124124
this.displayError(error, "pyProc.stderr");
125125
});
126-
126+
this.pyProc.stdout.on("data", d => {
127+
// This is necessary so we read the stdout of the python process
128+
// Else it just keep building up (related to issue #203 and #52)
129+
})
127130
resolve();
128131
});
129132
}

0 commit comments

Comments
 (0)