-
Notifications
You must be signed in to change notification settings - Fork 47k
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
[Flight] Serialize Error Values #31104
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
c7d97af
to
775defa
Compare
Does this also work for Actions that return error objects e.g. during form validation? |
Yes. But not very useful since its message will be hidden in prod. |
Will people write code that does that in dev and then be sad when it breaks in prod? |
We got this feedback already for thrown errors from Server Actions. @gnoff mentioned that we always want to include a notice in the error message that it'll be stripped in prod to prevent relying on messages for prod behavior. But we didn't follow-up. Might worth bringing this up again. |
The idea is that the RSC protocol is a superset of Structured Clone. #25687 One exception that we left out was serializing Error objects as values. We serialize "throws" or "rejections" as Error (regardless of their type) but not Error values.
This fixes that by serializing
Error
objects. We don't include digest in this case since we don't callonError
and it's not really expected that you'd log it on the server with some way to look it up.In general this is not super useful outside throws. Especially since we hide their values in prod. However, there is one case where it is quite useful. When you replay console logs in DEV you might often log an Error object within the scope of a Server Component. E.g. the default RSC error handling just console.error and error object.
Before this would just be an empty object due to our lax console log serialization:
After:
TODO for a follow up: Flight Reply direction. This direction doesn't actually serialize thrown errors because they always reject the serialization.