-
Notifications
You must be signed in to change notification settings - Fork 79
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
Parallel requests and Exception handling #116
Comments
Is it the "Oops" error you're expecting to see? This is down to a change in |
Yeah, I'd like to catch the oops error. If I just do a |
Hmm maybe you're right then! I just took a look at the diff between v4 and v5, and although it's "just" the aff update it wasn't entirely straight forward. |
can you see the error if you do |
Unfortunately it's still not showing with that change |
This is probably #112. When running things in parallel, if one throws an exception the runtime will cancel the other fibers. However cancellation is broken, and so the canceller never yields, hanging it. |
@natefaubion as per #117 (comment), with a fixed canceller this is still broken, but definitely seems to be in
Should we open an issue there? |
The program below logs the error when using 4.0.0, but when I upgrade to 5.0.0 it no longer logs the error
The text was updated successfully, but these errors were encountered: