@rpcbase/server 0.553.0 → 0.554.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -3
- package/dist/index.js.map +1 -1
- package/dist/renderSSR.d.ts +1 -0
- package/dist/renderSSR.d.ts.map +1 -1
- package/dist/ssrMiddleware.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5102,14 +5102,13 @@ const runRtsPrepass = async (element) => {
|
|
|
5102
5102
|
},
|
|
5103
5103
|
onShellError() {
|
|
5104
5104
|
finish(false);
|
|
5105
|
-
abort();
|
|
5106
5105
|
},
|
|
5107
5106
|
onError() {
|
|
5108
5107
|
}
|
|
5109
5108
|
});
|
|
5110
5109
|
timeoutId = setTimeout(() => {
|
|
5111
|
-
abort();
|
|
5112
5110
|
finish(false);
|
|
5111
|
+
abort();
|
|
5113
5112
|
}, RTS_SSR_PREPASS_TIMEOUT_MS);
|
|
5114
5113
|
});
|
|
5115
5114
|
};
|
|
@@ -5377,7 +5376,6 @@ const ssrMiddleware = ({
|
|
|
5377
5376
|
phase: "shell"
|
|
5378
5377
|
});
|
|
5379
5378
|
finalizeWithErrorPage(error);
|
|
5380
|
-
abort();
|
|
5381
5379
|
},
|
|
5382
5380
|
onError(error) {
|
|
5383
5381
|
didError = true;
|