You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
I'm pretty sure this is wrong because the yield statement isn't guaranteed to resume immediately after the future resolves, so there's potential for delay between receiving a response and firing the after_receive_response event for it.
I'm skeptical of the events we're seeing reported. Right now response logic looks like this:
I'm pretty sure this is wrong because the yield statement isn't guaranteed to resume immediately after the future resolves, so there's potential for delay between receiving a response and firing the
after_receive_response
event for it.More correct (I think) would be this:
because
add_done_callback
is preemptive and will execute as soon as the future resolves.The text was updated successfully, but these errors were encountered: