Skip to content

Commit ee8466d

Browse files
committed
fix(@angular/ssr): prevent stream draining if write does not return a boolean
Implements a workaround for CodeGenieApp/serverless-express#683 Closes angular#29801
1 parent 2d03d8f commit ee8466d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/angular/ssr/node/src/response.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ export async function writeResponseToNodeResponse(
7676
}
7777

7878
const canContinue = (destination as ServerResponse).write(value);
79-
if (!canContinue) {
79+
if (canContinue === false) {
80+
// Explicitly check for `false`, as AWS may return `undefined` even though this is not valid.
81+
// See: https://github.com/CodeGenieApp/serverless-express/issues/683
8082
await new Promise<void>((resolve) => destination.once('drain', resolve));
8183
}
8284
}

0 commit comments

Comments
 (0)