Skip to content

Commit 26a5b3c

Browse files
authored
Explicitly set highWaterMark to 0 for ReadableStream (#24641)
* Explicitly set highWaterMark to 0 for ReadableStreams This is because not all streaming implementations respect the default behavior of settings highWaterMark to 0 for byte streams. Being explicit guarantees the intended behavior across runtimes. * Remove size methods and add FlowFixMe instead
1 parent 25837ac commit 26a5b3c

File tree

2 files changed

+25
-17
lines changed

2 files changed

+25
-17
lines changed

packages/react-dom/src/server/ReactDOMFizzServerBrowser.js

+12-8
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,19 @@ function renderToReadableStream(
5353
});
5454

5555
function onShellReady() {
56-
const stream: ReactDOMServerReadableStream = (new ReadableStream({
57-
type: 'bytes',
58-
pull(controller) {
59-
startFlowing(request, controller);
56+
const stream: ReactDOMServerReadableStream = (new ReadableStream(
57+
{
58+
type: 'bytes',
59+
pull(controller) {
60+
startFlowing(request, controller);
61+
},
62+
cancel(reason) {
63+
abort(request);
64+
},
6065
},
61-
cancel(reason) {
62-
abort(request);
63-
},
64-
}): any);
66+
// $FlowFixMe size() methods are not allowed on byte streams.
67+
{highWaterMark: 0},
68+
): any);
6569
// TODO: Move to sub-classing ReadableStream.
6670
stream.allReady = allReady;
6771
resolve(stream);

packages/react-server-dom-webpack/src/ReactFlightDOMServerBrowser.js

+13-9
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,20 @@ function renderToReadableStream(
3333
options ? options.onError : undefined,
3434
context,
3535
);
36-
const stream = new ReadableStream({
37-
type: 'bytes',
38-
start(controller) {
39-
startWork(request);
36+
const stream = new ReadableStream(
37+
{
38+
type: 'bytes',
39+
start(controller) {
40+
startWork(request);
41+
},
42+
pull(controller) {
43+
startFlowing(request, controller);
44+
},
45+
cancel(reason) {},
4046
},
41-
pull(controller) {
42-
startFlowing(request, controller);
43-
},
44-
cancel(reason) {},
45-
});
47+
// $FlowFixMe size() methods are not allowed on byte streams.
48+
{highWaterMark: 0},
49+
);
4650
return stream;
4751
}
4852

0 commit comments

Comments
 (0)