Skip to content

Commit

Permalink
fix(core): merge in listenerEvents in _keepalive stream (#8122)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoerge authored and binoy14 committed Dec 20, 2024
1 parent cd989d1 commit babdfe4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,6 @@ export function checkoutPair(
},
// Use this to keep the mutation pipeline active.
// It won't ever emit any events, but it will prevent the eventsource connection from completing for as long as it is subscribed to
_keepalive: commits$.pipe(mergeMap(() => EMPTY)),
_keepalive: merge(listenerEvents$, commits$).pipe(mergeMap(() => EMPTY)),
}
}

0 comments on commit babdfe4

Please # to comment.