-
Notifications
You must be signed in to change notification settings - Fork 66
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
Streams hang when converting fs2 -> zio -> fs2 + map #533
Comments
@adamw Hmmm, the above code prints out |
Hm what's |
Ah it's a branch name ... let me checkout the project |
@adamgfraser So it indeed works on |
(my suspicion being that things stop working when using latest fs2/cats-effect :) ) |
Aren't these versions supposed to be binary compatible? |
@adamgfraser no idea :) apparently at least fs2 is not ;) |
Looks like this was broken in |
Is this a bug in |
@adamgfraser Works, thanks a lot for the fix & fast release! :) |
@adamw Awesome! 😃 |
Ran into a similar issue upgrading Tapir that required a fix to interop-cats: - softwaremill/tapir#2043 - zio/interop-cats#533
Ran into a similar issue upgrading Tapir that required a fix to interop-cats: - softwaremill/tapir#2043 - zio/interop-cats#533 Co-authored-by: ggavares <grant.gavares@oracle.com>
Ran into a similar issue upgrading Tapir that required a fix to interop-cats: - softwaremill/tapir#2043 - zio/interop-cats#533 Co-authored-by: ggavares <grant.gavares@oracle.com>
We're debugging hanging websocket tests as part of softwaremill/tapir#2043 (things work fine w/ zio1, stop working when updating to the latest RCs of zio2).
I think I minimised the problem to the following:
When this is run, nothing gets printed to the console. Removing
.toZStream().toFs2Stream
or, interestingly,.map(x => x)
, causesPRODUCING
to be printed out in the expected intervals.The text was updated successfully, but these errors were encountered: