Skip to content

Commit 218d070

Browse files
dpnoltejoulevsokra
authored
feat: set status code to 500 if unexpected error occurs before streaming in app router (#56236)
<!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving Documentation - Run `pnpm prettier-fix` to fix formatting issues before opening the PR. - Read the Docs Contribution Guide to ensure your contribution follows the docs guidelines: https://nextjs.org/docs/community/contribution-guide ### Adding or Updating Examples - The "examples guidelines" are followed from our contributing doc https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md - Make sure the linting passes by running `pnpm build && pnpm lint`. See https://github.com/vercel/next.js/blob/canary/contributing/repository/linting.md ### Fixing a bug - Related issues linked using `fixes #number` - Tests added. See: https://github.com/vercel/next.js/blob/canary/contributing/core/testing.md#writing-tests-for-nextjs - Errors have a helpful link attached, see https://github.com/vercel/next.js/blob/canary/contributing.md ### Adding a feature - Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. (A discussion must be opened, see https://github.com/vercel/next.js/discussions/new?category=ideas) - Related issues/discussions are linked using `fixes #number` - e2e tests added (https://github.com/vercel/next.js/blob/canary/contributing/core/testing.md#writing-tests-for-nextjs) - Documentation added - Telemetry added. In case of a feature if it's used or not. - Errors have a helpful link attached, see https://github.com/vercel/next.js/blob/canary/contributing.md ## For Maintainers - Minimal description (aim for explaining to someone not on the team to understand the PR) - When linking to a Slack thread, you might want to share details of the conclusion - Link both the Linear (Fixes NEXT-xxx) and the GitHub issues - Add review comments if necessary to explain to the reviewer the logic behind a change ### What? ### Why? ### How? Closes NEXT- Fixes # --> This PR therefore introduces to always set response status code to 500 unless it is a `NotFoundError` or `RedirectError`. This PR would fix issue #56235. See also: https://codesandbox.io/p/sandbox/nice-panini-2z3mcp . **Current Behavior** At the moment, when an unexpected error occurs during app server rendering, a 200 ok is returned as status code. This seems to be undesirable because of the success status CDNs will cache the error pages and crawlers will index the page considering the error content as the actual content. **Desired Behavior** This issue is related to discussion #53225. Even though I understand that the response status code cannot be set if streaming has started, in my view it would be best to set the response status to 500 whenever it can (so before the streaming has started) for SEO and (CDN) http caching. This would also be consistent with how 404s currently work; that is, response status code is set to 404 if `NotFoundError` occurred before streaming (related [issue](#43831) & [PR](#55542)). Ideally, when a runtime error happens after streaming, a `<meta name="robots" content="noindex" />` would also be added. But I didn't want to make the PR too complex before receiving feedback. --------- Co-authored-by: Vũ Văn Dũng <[email protected]> Co-authored-by: Tobias Koppers <[email protected]>
1 parent ee9bee9 commit 218d070

File tree

9 files changed

+69
-1
lines changed

9 files changed

+69
-1
lines changed

packages/next/src/server/app-render/app-render.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -728,6 +728,9 @@ async function renderToHTMLOrFlightImpl(
728728
}
729729

730730
const is404 = res.statusCode === 404
731+
if (!is404 && !hasRedirectError) {
732+
res.statusCode = 500
733+
}
731734

732735
// Preserve the existing RSC inline chunks from the page rendering.
733736
// To avoid the same stream being operated twice, clone the origin stream for error rendering.

test/e2e/app-dir/app/app/(newroot)/dashboard/project/[projectId]/page.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { use } from 'react'
22

3-
function getData({ params }) {
3+
async function getData({ params }) {
44
return {
55
now: Date.now(),
66
params,
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
export const revalidate = 1
2+
3+
export default function UnexpectedErrorPage(props) {
4+
// use query param to only throw error during runtime, not build time
5+
if (props.searchParams.error) {
6+
throw new Error('Oh no')
7+
}
8+
return <p id="page">/unexpected-error</p>
9+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export default function Root({ children }: { children: React.ReactNode }) {
2+
return (
3+
<html>
4+
<body>{children}</body>
5+
</html>
6+
)
7+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default function Loading() {
2+
return <p>loading</p>
3+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export default function UnexpectedErrorPage(props) {
2+
// use query param to only throw error during runtime, not build time
3+
if (props.searchParams.error) {
4+
throw new Error('Oh no')
5+
}
6+
return <p id="page">/unexpected-error</p>
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export default function UnexpectedErrorPage(props) {
2+
// use query param to only throw error during runtime, not build time
3+
if (props.searchParams.error) {
4+
throw new Error('Oh no')
5+
}
6+
return <p id="page">/unexpected-error</p>
7+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/**
2+
* @type {import('next').NextConfig}
3+
*/
4+
const nextConfig = {}
5+
6+
module.exports = nextConfig
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import { createNextDescribe } from 'e2e-utils'
2+
3+
createNextDescribe(
4+
'unexpected-error',
5+
{
6+
files: __dirname,
7+
},
8+
({ next }) => {
9+
it('should set response status to 500 for unexpected errors in ssr app route', async () => {
10+
const res = await next.fetch('/ssr-unexpected-error?error=true')
11+
expect(res.status).toBe(500)
12+
})
13+
14+
it('cannot change response status when streaming has started', async () => {
15+
const res = await next.fetch(
16+
'/ssr-unexpected-error-after-streaming?error=true'
17+
)
18+
expect(res.status).toBe(200)
19+
})
20+
21+
it('should set response status to 500 for unexpected errors in isr app route', async () => {
22+
const res = await next.fetch('/isr-unexpected-error?error=true')
23+
expect(res.status).toBe(500)
24+
})
25+
}
26+
)

0 commit comments

Comments
 (0)