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
While implementing a test for outbound request body streaming (#7412), I discovered that dropping the incoming-response object would cause the request connection to be closed, even if I still had open handles to the request body and stream.
While implementing a test for outbound request body streaming (#7412), I discovered that dropping the
incoming-response
object would cause the request connection to be closed, even if I still had open handles to the request body and stream.For example, if I insert
drop(response);
to https://github.com/dicej/wasmtime/blob/1782a165754a2dd62f45cbc670603cc85477323b/crates/test-programs/src/bin/api_proxy_streaming.rs#L129, the test will fail with no (or few) bytes copied. The behavior I expected was that the test would pass (i.e. all bytes would be copied) regardless of whether the response handle was dropped or not.The text was updated successfully, but these errors were encountered: