mirror of
https://github.com/BreizhHardware/express-prom-bundle.git
synced 2026-01-18 16:27:28 +01:00
This happens, for example, when a http proxy in front of the application is configured with a timeout and the node server is too slow to respond. Currently such timeouts are counted as 200s by express-prom-bundle. This PR changes that to 499 "Client Closed Request". This way it's possible to tell them apart.
17 lines
444 B
JavaScript
17 lines
444 B
JavaScript
'use strict';
|
|
/* eslint-env jasmine */
|
|
|
|
const normalizeStatusCode = require('../src/normalizeStatusCode');
|
|
|
|
describe('normalizeStatusCode', () => {
|
|
it('returns run callback if configured', () => {
|
|
expect(
|
|
normalizeStatusCode({status_code: 500, headersSent: true})
|
|
).toBe(500);
|
|
});
|
|
|
|
it('returns 499 if headers are not sent', () => {
|
|
expect(normalizeStatusCode({statusCode: 200, headersSent: false})).toBe(499);
|
|
});
|
|
});
|