We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7014057 commit db4016fCopy full SHA for db4016f
packages/core/src/v3/apiClient/runStream.ts
@@ -331,8 +331,6 @@ export class RunSubscription<TRunTypes extends AnyRunTypes> {
331
this._isRunComplete &&
332
!this.options.abortController.signal.aborted
333
) {
334
- console.log("Closing stream because run is complete");
335
-
336
this.options.stopRunShapeStream();
337
}
338
},
packages/core/src/v3/apiClient/stream.ts
@@ -65,7 +65,6 @@ export function zodShapeStream<TShapeSchema extends z.ZodTypeAny>(
65
return {
66
stream: stream as AsyncIterableStream<z.output<TShapeSchema>>,
67
stop: () => {
68
- console.log("Stopping zodShapeStream with abortController.abort()");
69
abortController.abort();
70
71
};
0 commit comments