Skip to content

Commit

Permalink
End the passthrough stream instead of ending (#23399)
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Jun 24, 2024
1 parent 795bba9 commit 3119849
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,7 @@ class NativeGlobalPythonFinderImpl implements NativeGlobalPythonFinder {
writable.pipe(proc.stdin, { end: false });
const disposeStreams = new Disposable(() => {
readable.end();
readable.destroy();
writable.end();
writable.destroy();
});
const connection = rpc.createMessageConnection(
new rpc.StreamMessageReader(readable),
Expand Down

0 comments on commit 3119849

Please sign in to comment.