|
|
@ -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' }));
|
|
|
|