Comparing version 0.3.7 to 0.3.8
# Changelog | ||
## 0.3.8 | ||
* Fixes a potential EventEmitter memory leak when client uses a custom timeout value. | ||
## 0.3.7 | ||
@@ -4,0 +8,0 @@ |
@@ -396,5 +396,7 @@ // | ||
socket.setTimeout(_this.options.timeout); | ||
socket.on('timeout', function () { | ||
req.abort(); | ||
}); | ||
if (typeof(socket._events.timeout) === 'undefined') { | ||
socket.on('timeout', function () { | ||
req.abort(); | ||
}); | ||
} | ||
}); | ||
@@ -401,0 +403,0 @@ } |
{ | ||
"name": "ovh", | ||
"version": "0.3.7", | ||
"version": "0.3.8", | ||
"description": "An helper library to use OVH web services and REST APIs", | ||
@@ -13,3 +13,3 @@ "homepage": "https://github.com/gierschv/node-ovh", | ||
"engines": { | ||
"node": ">= 0.6 <= 0.11" | ||
"node": ">= 0.6 <= 0.11.x" | ||
}, | ||
@@ -16,0 +16,0 @@ "repository": { |
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
49983
1010