fix(core): update

This commit is contained in:
Philipp Kunz 2022-07-30 17:32:58 +02:00
parent 21e92bf0c1
commit 69e3a71354
2 changed files with 10 additions and 1 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smartproxy',
version: '3.0.16',
version: '3.0.17',
description: 'a proxy for handling high workloads of proxying'
}

View File

@ -209,6 +209,15 @@ JNj2Dr5H0XoLFFnvuvzcRbhlJ9J67JzR+7g=
response.on('end', () => {
res.end();
});
response.on('error', () => {
res.end();
});
response.on('close', () => {
res.end();
});
response.on('timeout', () => {
res.end();
});
}
);