Fix HttpClient-from-HttpService wrapper prematurely cancelling service promise.
The client app will typically discard the returned response body upon reading EOF. However, the server app may not actually be "done" with the service callback yet at this point. Usually it completes very soon after, but it may need another turn or two of the event loop. If the client discards the response body stream, the server-side promise is discarded, cancelling whatever was left. This is awkward, so we should instead delay the client from seeing EOF until the server has actually finished up.
Showing
This diff is collapsed.
Please
register
or
sign in
to comment