This commit is contained in:
Antoni Kepinski 2020-05-17 19:03:39 +02:00
commit 8a3d2638ae
No known key found for this signature in database
GPG Key ID: C15767C6F117A9B6
2 changed files with 3 additions and 2 deletions

View File

@ -477,7 +477,7 @@ const options = {
#### Custom highWaterMark
Stream on Node.js have a smaller internal buffer size (16Kb, aka `highWaterMark`) from client-side browsers (>1MB, not consistent across browsers). Because of that, when you are writing an isomorphic app and using `res.clone()`, it will hang with large response in Node.
Stream on Node.js have a smaller internal buffer size (16kB, aka `highWaterMark`) from client-side browsers (>1MB, not consistent across browsers). Because of that, when you are writing an isomorphic app and using `res.clone()`, it will hang with large response in Node.
The recommended way to fix this problem is to resolve cloned response in parallel:

View File

@ -7,7 +7,8 @@ Changelog
**Work in progress!**
- Fix: Export the `AbortError` class.
- Enhance: improve coverage.
- Fix: export the `AbortError` class.
## v3.0.0-beta.5