Socket
Socket
Sign inDemoInstall

@quantos/micro-request

Package Overview
Dependencies
19
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.3 to 1.1.4

6

dist/redis_cache.js

@@ -29,2 +29,8 @@ "use strict";

});
redisClient.on('error', (error) => {
console.error('[@quantos/micro-request][Redis client] ' + error);
});
process.on('SIGTERM', () => {
redisClient.disconnect();
});
}

@@ -31,0 +37,0 @@ class RedisCache {

2

package.json
{
"name": "@quantos/micro-request",
"version": "1.1.3",
"version": "1.1.4",
"description": "Quantos http client with cache, retry and fallback mechanism",

@@ -5,0 +5,0 @@ "author": "fabriziotognetto <info@quantos.it>",

@@ -21,2 +21,8 @@ import { createClient, RedisClientType } from 'redis';

});
redisClient.on('error', (error: any) => {
console.error('[@quantos/micro-request][Redis client] ' + error);
});
process.on('SIGTERM', () => {
redisClient.disconnect();
});
}

@@ -23,0 +29,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc