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
Looks like I'd introduced another bug (: Currently, ClientResponse.release expect that underlying flow control implements .readany() method. However, recently introduced FlowControlChunksQueue doesn't.
I wonder what the fix have to be: readany() for ChunksQueue is mostly useless while making his read() to match the behaviour of StreamReader is almost dangerous. What's the common baseline would be for both of these?
The text was updated successfully, but these errors were encountered:
Looks like I'd introduced another bug (: Currently, ClientResponse.release expect that underlying flow control implements
.readany()
method. However, recently introduced FlowControlChunksQueue doesn't.I wonder what the fix have to be:
readany()
forChunksQueue
is mostly useless while making hisread()
to match the behaviour ofStreamReader
is almost dangerous. What's the common baseline would be for both of these?The text was updated successfully, but these errors were encountered: