Skip to content

Commit 53510f8

Browse files
authored
fix(io): do not autoClose stdin readable stream (#30345)
Fixes #28867
1 parent e27d025 commit 53510f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/io/12_io.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ class Stdin {
167167

168168
get readable() {
169169
if (this.#readable === undefined) {
170-
this.#readable = readableStreamForRid(this.#rid);
170+
this.#readable = readableStreamForRid(this.#rid, false);
171171
}
172172
return this.#readable;
173173
}

0 commit comments

Comments
 (0)