Re-fix errorMiddleware (#3922)

th-downstream
Takuya Yoshida 7 years ago committed by Eugen Rochko
parent 104c7d7f96
commit 84d2df3ec6

@ -246,7 +246,7 @@ const startWorker = (workerId) => {
accountFromRequest(req, next); accountFromRequest(req, next);
}; };
const errorMiddleware = (err, req, res, next) => { // eslint-disable-line no-unused-vars const errorMiddleware = (err, req, res, {}) => {
log.error(req.requestId, err.toString()); log.error(req.requestId, err.toString());
res.writeHead(err.statusCode || 500, { 'Content-Type': 'application/json' }); res.writeHead(err.statusCode || 500, { 'Content-Type': 'application/json' });
res.end(JSON.stringify({ error: err.statusCode ? err.toString() : 'An unexpected error occurred' })); res.end(JSON.stringify({ error: err.statusCode ? err.toString() : 'An unexpected error occurred' }));

Loading…
Cancel
Save