Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid Dropping Upstream Items in mergeSource #513

Merged
merged 4 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions conduit/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog for conduit

## 1.3.6

* Avoid dropping upstream items in `mergeSource` [#513](https://github.com/snoyberg/conduit/pull/513)

## 1.3.5

* Add `groupOn`
Expand Down
2 changes: 1 addition & 1 deletion conduit/src/Data/Conduit/Internal/Conduit.hs
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ mergeSource = loop . sealConduitT
go a = do
(src1, mi) <- lift $ src0 $$++ await
case mi of
Nothing -> return ()
Nothing -> leftover a
Just i -> yield (i, a) >> loop src1


Expand Down
6 changes: 6 additions & 0 deletions conduit/test/main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -704,6 +704,12 @@ main = hspec $ do
withShortAlphaIndex = CI.mergeSource (CL.sourceList ["A", "B", "C"])
output <- runConduit $ src .| withShortAlphaIndex .| CL.consume
output `shouldBe` [("A", 1), ("B", 2), ("C", 3)]
it "does not drop upstream items" $ do
let num = CL.sourceList [1 .. 10 :: Int]
let chr = CL.sourceList ['a' .. 'c']
(output, remainder) <- runConduit $ num .| liftA2 (,) (CI.mergeSource chr .| CL.consume) CL.consume
output `shouldBe` [('a', 1), ('b', 2), ('c', 3)]
remainder `shouldBe` [4 .. 10]

describe "passthroughSink" $ do
it "works" $ do
Expand Down
Loading