-
Notifications
You must be signed in to change notification settings - Fork 608
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Bugfix/queue get #1308
Bugfix/queue get #1308
Conversation
huh travis complains about bincompat? All I have touched is private, so this seems odd :-( |
We can add an exclusion for the Travis error. Does this test pass too? Queue
.unbounded[IO, Int]
.flatMap { q =>
q.dequeue.timeout(1.second) *>
q.enqueue1(1) *>
q.enqueue1(2) *>
q.dequeue1
}
.unsafeRunSync shouldBe 1 |
@mpilquist tests passes. As regard the exclusions, where to add them ? |
Also going forward perhaps fro next release of fs2, I would like to explore, if we could implement |
Fixes #1293.
Needs to be squashed before merge.