Skip to content

Commit d0e0bd3

Browse files
fix: emit error from internal socket stream (#41)
1 parent c6a0f3f commit d0e0bd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/probe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export const probe =
6666
toArrayOfValues,
6767
flattenDocumentStrings,
6868
takeUntil(internalLimit)
69-
).subscribe(msg => obs.next(msg))
69+
).subscribe(msg => obs.next(msg), err => obs.next(err))
7070

7171
return function unsubscribe() {
7272
internalLimit.next()

0 commit comments

Comments
 (0)