agentkeepalive
Advanced tools
Comparing version 3.5.1 to 3.5.2
3.5.2 / 2018-10-19 | ||
================== | ||
**fixes** | ||
* [[`5751fc1`](http://github.com/node-modules/agentkeepalive/commit/5751fc1180ed6544602c681ffbd08ca66a0cb12c)] - fix: sockLen being miscalculated when removing sockets (#60) (Ehden Sinai <<cixel@users.noreply.github.com>>) | ||
3.5.1 / 2018-07-31 | ||
@@ -3,0 +9,0 @@ ================== |
@@ -383,3 +383,3 @@ // Copyright Joyent, Inc. and other Node contributors. | ||
var freeLen = this.freeSockets[name] ? this.freeSockets[name].length : 0; | ||
var sockLen = freeLen + this.sockets[name] ? this.sockets[name].length : 0; | ||
var sockLen = freeLen + (this.sockets[name] ? this.sockets[name].length : 0); | ||
// [patch end] | ||
@@ -386,0 +386,0 @@ |
{ | ||
"name": "agentkeepalive", | ||
"version": "3.5.1", | ||
"version": "3.5.2", | ||
"description": "Missing keepalive http.Agent", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
33856