File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/next/src/server/app-render Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2295,7 +2295,7 @@ async function renderToStream(
2295
2295
// Try to render the page and see if there's any cache misses.
2296
2296
// If there are, wait for caches to finish and restart the render.
2297
2297
2298
- const renderRestartable = async (
2298
+ const renderInStages = async (
2299
2299
serverDebugChannel : DebugChannelServer | undefined ,
2300
2300
signal : AbortSignal | undefined ,
2301
2301
onPrerenderStageEnd : ( ( ) => void ) | undefined
@@ -2355,7 +2355,7 @@ async function renderToStream(
2355
2355
2356
2356
console . debug ( `renderToStream (1) :: attempting render` )
2357
2357
2358
- const reactServerStreamPromise = renderRestartable (
2358
+ const reactServerStreamPromise = renderInStages (
2359
2359
initialRenderServerDebugChannel ?. channel ,
2360
2360
initialRenderReactController . signal ,
2361
2361
( ) => {
@@ -2424,7 +2424,7 @@ async function renderToStream(
2424
2424
const finalRenderServerDebugChannel = debugChannel ?. serverSide
2425
2425
2426
2426
reactServerResult = new ReactServerResult (
2427
- await renderRestartable (
2427
+ await renderInStages (
2428
2428
finalRenderServerDebugChannel ,
2429
2429
undefined ,
2430
2430
( ) => {
You can’t perform that action at this time.
0 commit comments