We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afc8fdc commit 98441ebCopy full SHA for 98441eb
server/routerlicious/packages/services-utils/src/morganLoggerMiddleware.ts
@@ -137,7 +137,8 @@ export function jsonMorganLoggerMiddleware(
137
if (res.locals.serverTimeout) {
138
statusCode = "Server Timeout";
139
} else if (res.locals.clientDisconnected) {
140
- statusCode = durationInMs > 20_000 ? "Server Timeout - Client Disconnect" : "499";
+ statusCode =
141
+ durationInMs > 20_000 ? "Server Timeout - Client Disconnect" : "499";
142
} else {
143
statusCode = "STATUS_UNAVAILABLE";
144
}
0 commit comments