You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given that there is (at least currently) no way to recover when a connection is dropped on a cursor, I think we should close any readable streams bound to that cursor. For example:
The way streams work in Node, an error event on the readable stream does not propagate through the other streams. You can work around this by attaching event listeners before you .pipe(), but since you can't recover from these errors anyway, I think we should also emit an end even, which definitely gets propagated.
The text was updated successfully, but these errors were encountered:
Given that there is (at least currently) no way to recover when a connection is dropped on a cursor, I think we should close any readable streams bound to that cursor. For example:
The way streams work in Node, an
error
event on the readable stream does not propagate through the other streams. You can work around this by attaching event listeners before you.pipe()
, but since you can't recover from these errors anyway, I think we should also emit anend
even, which definitely gets propagated.The text was updated successfully, but these errors were encountered: