Skip to content

Commit

Permalink
feat: add status message for 504 caused by optimizer (#12435)
Browse files Browse the repository at this point in the history
  • Loading branch information
sapphi-red committed Mar 16, 2023
1 parent e23f690 commit 5cdd3fa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/vite/src/node/server/middlewares/transform.ts
Expand Up @@ -204,6 +204,7 @@ export function transformMiddleware(
// Skip if response has already been sent
if (!res.writableEnded) {
res.statusCode = 504 // status code request timeout
res.statusMessage = 'Optimize Deps Processing Error'
res.end()
}
// This timeout is unexpected
Expand All @@ -214,6 +215,7 @@ export function transformMiddleware(
// Skip if response has already been sent
if (!res.writableEnded) {
res.statusCode = 504 // status code request timeout
res.statusMessage = 'Outdated Optimize Dep'
res.end()
}
// We don't need to log an error in this case, the request
Expand Down

0 comments on commit 5cdd3fa

Please sign in to comment.