Skip to content

Commit

Permalink
Revert "Use a Channel.bounded(1) instead of Channel.synchronous in pa…
Browse files Browse the repository at this point in the history
…rJoin"

This reverts commit 749879c.
  • Loading branch information
SystemFw committed Mar 9, 2021
1 parent 2880579 commit 1c0b491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/shared/src/main/scala/fs2/Stream.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3810,7 +3810,7 @@ object Stream extends StreamLowPriority {
// starts with 1 because outer stream is running by default
running <- SignallingRef(1L)
// sync queue assures we won't overload heap when resulting stream is not able to catchup with inner streams
outputChan <- Channel.bounded[F, Chunk[O]](1)
outputChan <- Channel.synchronous[F, Chunk[O]]
} yield {
// stops the join evaluation
// all the streams will be terminated. If err is supplied, that will get attached to any error currently present
Expand Down

0 comments on commit 1c0b491

Please sign in to comment.