Browse Source

Re-fix errorMiddleware (#3922)

pull/4/head
Takuya Yoshida 6 years ago
committed by Eugen Rochko
parent
commit
e5563843a2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      streaming/index.js

+ 1
- 1
streaming/index.js View File

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

Loading…
Cancel
Save