We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently PostAsync_CancelDuringRequestContentSend_TaskCanceledQuickly test fails with OutOfMemoryException
PostAsync_CancelDuringRequestContentSend_TaskCanceledQuickly
OutOfMemoryException
We should instead allow streaming requests
const stream = new ReadableStream({ async start(controller) { await wait(1000); controller.enqueue('This '); await wait(1000); controller.enqueue('is '); await wait(1000); controller.enqueue('a '); await wait(1000); controller.enqueue('slow '); await wait(1000); controller.enqueue('request.'); controller.close(); }, }).pipeThrough(new TextEncoderStream()); fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: stream, });
See https://web.dev/fetch-upload-streaming/
The text was updated successfully, but these errors were encountered:
Tagging subscribers to 'arch-wasm': @lewing See info in area-owners.md if you want to be subscribed.
arch-wasm, area-System.Net.Http
arch-wasm
area-System.Net.Http
Sorry, something went wrong.
Might be a duplicate of #36634 ?
No branches or pull requests
Currently
PostAsync_CancelDuringRequestContentSend_TaskCanceledQuickly
test fails withOutOfMemoryException
We should instead allow streaming requests
See https://web.dev/fetch-upload-streaming/
The text was updated successfully, but these errors were encountered: