Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gofer

Package Overview
Dependencies
Maintainers
4
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gofer - npm Package Compare versions

Comparing version 3.5.5 to 3.5.6

6

CHANGELOG.md

@@ -0,1 +1,7 @@

### 3.5.6
* use proper timeout to fix keepAlive - **[@dbushong](https://github.com/dbushong)** [#83](https://github.com/groupon/gofer/pull/83)
- [`7eb902f`](https://github.com/groupon/gofer/commit/7eb902f30fc739bc511f8dd2ec093f4b597dcdbd) **fix:** use proper timeout to fix keepAlive
### 3.5.5

@@ -2,0 +8,0 @@

5

lib/request.js

@@ -269,3 +269,3 @@ /*

function onSocketTimeout() {
function onSocketTimedOut() {
socketTimer = setImmediate(function checkRealTimeout() {

@@ -285,3 +285,2 @@ socketTimer = null;

responseTimer = setIOTimeout(onResponseTimedOut, options.timeout);
socket.setTimeout(options.timeout, onSocketTimeout);
}

@@ -296,2 +295,4 @@

req.setTimeout(options.timeout, onSocketTimedOut);
req.once('response', handleResponse);

@@ -298,0 +299,0 @@ req.on('error', failAndAbort);

2

package.json
{
"name": "gofer",
"version": "3.5.5",
"version": "3.5.6",
"description": "A general purpose service client library",

@@ -5,0 +5,0 @@ "license": "BSD-3-Clause",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc