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
Clean up helper task in AsyncReadStream faster (#13105)
The previous implementation would hit EOF on the input object, then hit
EOF again, and then block on sending a value over the channel. There's
no need for the task to stick around and infinitely generate EOF
messages, however, so exit the task as soon as the first EOF is hit and
a message is sent.
0 commit comments