-
Notifications
You must be signed in to change notification settings - Fork 12k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@angular/ssr - node drain breaks serverless #29801
Comments
Hi @dklmuc, it would be great to have a reproduction. However, OutgoingMessage |
@alan-agius4 yes, this is also what is confusing me after reading the node docs for I've added a small repro: https://github.com/dklmuc/angular-srr-lambda
This will output the angular response to console and then it runs into the default timeout of 3 seconds. Sidenodes: I can't rule out if it is an error in the used serverless package translating the lambda event into a request object, but like I've said removing that change from the pull request locally is solving this problem. |
Indeed, it does seem like a bug in the mentioned package. In fact there has been a long standing issue CodeGenieApp/serverless-express#683 For the time being we could potentially do a workaround. |
… a boolean Implements a workaround for CodeGenieApp/serverless-express#683 Closes angular#29801
@alan-agius4 thanks a lot for the quick help. |
… a boolean Implements a workaround for CodeGenieApp/serverless-express#683 Closes #29801 (cherry picked from commit ee8466d)
Command
other
Is this a regression?
The previous version in which this bug was not present was
19.1.3
Description
When updating to angular 19.2.2 we see a regression while running SSR inside an AWS lambda. Local tests with a 3rd party lib
lambda-local
shows that response was created by angularNodeAppEngine, but writeResponseToNodeResponse does not seem to resolve anymore as before and lambda process will result in a timeout.Minimal Reproduction
Reverting locally the changes of #29491 made it work again.
Further debugging:
f (!canContinue) { console.log('destination.write()', canContinue); await new Promise((resolve) => destination.once('drain', resolve)); }
strangely shows canContinue as
undefined
.If needed a repro could be provided.
Exception or Error
Your Environment
Anything else relevant?
No response
The text was updated successfully, but these errors were encountered: