mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-25 06:09:11 +08:00
22 lines
597 B
JavaScript
Executable File
22 lines
597 B
JavaScript
Executable File
'use strict';
|
|
|
|
var debug = require('debug')('express-http-proxy');
|
|
|
|
function connectionResetHandler(err, res) {
|
|
if (err && err.code === 'ECONNRESET') {
|
|
debug('Error: Connection reset due to timeout.');
|
|
res.setHeader('X-Timeout-Reason', 'express-http-proxy reset the request.');
|
|
res.writeHead(504, {'Content-Type': 'text/plain'});
|
|
res.end();
|
|
}
|
|
}
|
|
|
|
function handleProxyErrors(err, res, next) {
|
|
switch (err && err.code) {
|
|
case 'ECONNRESET': { return connectionResetHandler(err, res, next); }
|
|
default: { next(err); }
|
|
}
|
|
}
|
|
|
|
module.exports = handleProxyErrors;
|