From 0c44316b22c3711ad5369dae2f66f0fd5c79799e Mon Sep 17 00:00:00 2001 From: Takuya Yoshida Date: Sat, 24 Jun 2017 02:22:02 +0900 Subject: [PATCH] Fix errorMiddleware to prevent "TypeError: res.writeHead is not a function" (#3913) * Fix errorMiddleware * Add "eslint-disable-line no-unused-vars" --- streaming/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streaming/index.js b/streaming/index.js index fb23be34d..156e1d4bc 100644 --- a/streaming/index.js +++ b/streaming/index.js @@ -242,7 +242,7 @@ const startWorker = (workerId) => { accountFromRequest(req, next); }; - const errorMiddleware = (err, req, res) => { + const errorMiddleware = (err, req, res, next) => { // eslint-disable-line no-unused-vars 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' }));