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 Dec 20, 2024
1 parent 78fc3b1 commit 498b7e4
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 498b7e4

Please sign in to comment.