Socket
Socket
Sign inDemoInstall

builder-util-runtime

Package Overview
Dependencies
3
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 8.6.1 to 8.6.2

13

out/httpExecutor.js

@@ -317,13 +317,8 @@ "use strict";

addTimeOutHandler(request, callback) {
const timeoutCb = () => {
request.abort();
callback(new Error("Request timed out"));
};
request.on("socket", socket => {
socket.setTimeout(60 * 1000, timeoutCb);
socket.setTimeout(60 * 1000, () => {
request.abort();
callback(new Error("Request timed out"));
});
});
request.on("close", () => {
setTimeout(timeoutCb, 30 * 1000);
});
}

@@ -330,0 +325,0 @@

{
"name": "builder-util-runtime",
"version": "8.6.1",
"version": "8.6.2",
"main": "out/index.js",

@@ -5,0 +5,0 @@ "author": "Vladimir Krivosheev",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc