Skip to content
Snippets Groups Projects
Commit e5563843 authored by Takuya Yoshida's avatar Takuya Yoshida Committed by Eugen Rochko
Browse files

Re-fix errorMiddleware (#3922)

parent c972e1ee
No related branches found
No related tags found
No related merge requests found
......@@ -246,7 +246,7 @@ const startWorker = (workerId) => {
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());
res.writeHead(err.statusCode || 500, { 'Content-Type': 'application/json' });
res.end(JSON.stringify({ error: err.statusCode ? err.toString() : 'An unexpected error occurred' }));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment