dart-lang / http2

A HTTP/2 implementation for dart.
https://pub.dev/packages/http2
BSD 3-Clause "New" or "Revised" License
153 stars 46 forks source link

http2 hung at await for stream.incomingMessages #80

Open wanjm opened 3 years ago

wanjm commented 3 years ago

in http2 demo there is such code to deal message;

var stream = transport.makeRequest(headers, endStream: true);
  await for (var message in stream.incomingMessages) {

but if the connection is closed after makeRequest, then the await will hung there;

wanjm commented 3 years ago

why there is no one take care of http2

mraleph commented 3 years ago

why there is no one take care of http2

Pull Requests are welcome.