commit: e5563843a2c063ab0295f778428183361e0aa326
parent: c972e1ee1fdc7ebc8bd4ad764cdf189ca4874764
Author: Takuya Yoshida <hawaiianphoto@geekhost.net>
Date: Mon, 26 Jun 2017 08:46:15 +0900
Re-fix errorMiddleware (#3922)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/streaming/index.js b/streaming/index.js
@@ -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' }));