We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0c821c commit 593bee6Copy full SHA for 593bee6
src/client/stdio.ts
@@ -158,6 +158,15 @@ export class StdioClientTransport implements Transport {
158
this._process.stdout?.on("error", (error) => {
159
this.onerror?.(error);
160
});
161
+
162
+ this._process.stderr?.on("data", (chunk) => {
163
+ this._readBuffer.append(chunk);
164
+ this.processReadBuffer();
165
+ });
166
167
+ this._process.stderr?.on("error", (error) => {
168
+ this.onerror?.(error);
169
170
171
}
172
0 commit comments