Compare commits

...

2 Commits

Author SHA1 Message Date
c9c8a1234c 1.1.27 2019-09-08 18:00:49 +02:00
dffabd905f fix(core): update 2019-09-08 18:00:48 +02:00
3 changed files with 4 additions and 4 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartrequest",
"version": "1.1.26",
"version": "1.1.27",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartrequest",
"version": "1.1.26",
"version": "1.1.27",
"private": false,
"description": "dropin replacement for request",
"main": "dist/index.js",

View File

@ -130,13 +130,13 @@ export let request = async (
case parsedUrl.protocol === 'https:' && optionsArg.keepAlive:
optionsArg.agent = httpsAgent;
return plugins.https;
case parsedUrl.protocol === 'https:' && !optionsArg.keepAlive:
case parsedUrl.protocol === 'https:' && (!optionsArg.keepAlive):
optionsArg.agent = httpsAgentKeepAliveFalse;
return plugins.https;
case parsedUrl.protocol === 'http:' && optionsArg.keepAlive:
optionsArg.agent = httpAgent;
return plugins.http;
case parsedUrl.protocol === 'http:' && !optionsArg.keepAlive:
case parsedUrl.protocol === 'http:' && (!optionsArg.keepAlive):
optionsArg.agent = httpAgentKeepAliveFalse;
return plugins.http;
}