We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d2a092a + e21f3c3 commit 07a09b1Copy full SHA for 07a09b1
dotcom-rendering/src/server/lib/logging-middleware.ts
@@ -27,7 +27,7 @@ const hasConfig = (body: unknown): body is { config: ConfigType } => {
27
*/
28
export const requestLoggerMiddleware: RequestHandler = (req, res, next) => {
29
const start = process.hrtime.bigint();
30
- const headerValue = req.headers['x-gu-xid'];
+ const headerValue = req.headers['x-request-id'];
31
const requestId = Array.isArray(headerValue) ? headerValue[0] : headerValue;
32
const loggerState = {
33
request: {
0 commit comments