fix(core): update

This commit is contained in:
Philipp Kunz 2022-07-30 18:43:10 +02:00
parent 4a4b64a2c4
commit c48f956ae3
2 changed files with 12 additions and 5 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@pushrocks/smartrequest', name: '@pushrocks/smartrequest',
version: '2.0.5', version: '2.0.6',
description: 'dropin replacement for request' description: 'dropin replacement for request'
} }

View File

@ -60,13 +60,17 @@ const parseSocketPathAndRoute = (stringToParseArg: string) => {
const httpAgent = new plugins.agentkeepalive({ const httpAgent = new plugins.agentkeepalive({
keepAlive: true, keepAlive: true,
maxFreeSockets: 10, maxFreeSockets: 10,
maxSockets: 100,
maxTotalSockets: 1000,
timeout: 60000,
}); });
/** /**
* a custom http agent to make sure we can set custom keepAlive options for speedy subsequent calls * a custom http agent to make sure we can set custom keepAlive options for speedy subsequent calls
*/ */
const httpAgentKeepAliveFalse = new plugins.https.Agent({ const httpAgentKeepAliveFalse = new plugins.agentkeepalive({
keepAlive: false keepAlive: false,
timeout: 60000
}); });
/** /**
@ -75,14 +79,17 @@ const httpAgentKeepAliveFalse = new plugins.https.Agent({
const httpsAgent = new plugins.agentkeepalive.HttpsAgent({ const httpsAgent = new plugins.agentkeepalive.HttpsAgent({
keepAlive: true, keepAlive: true,
maxFreeSockets: 10, maxFreeSockets: 10,
maxSockets: 100,
maxTotalSockets: 1000,
timeout: 60000
}); });
/** /**
* a custom https agent to make sure we can set custom keepAlive options for speedy subsequent calls * a custom https agent to make sure we can set custom keepAlive options for speedy subsequent calls
*/ */
const httpsAgentKeepAliveFalse = new plugins.agentkeepalive.HttpsAgent({ const httpsAgentKeepAliveFalse = new plugins.agentkeepalive.HttpsAgent({
maxFreeSockets: 0, keepAlive: false,
keepAlive: false timeout: 60000
}); });
export let request = async ( export let request = async (