@quantos/micro-request
Advanced tools
Comparing version 1.1.1 to 1.1.2
@@ -49,3 +49,3 @@ "use strict"; | ||
for (const key of ids) { | ||
const cached = yield this.get(key); | ||
const cached = yield this.get(key, cachePrefix); | ||
if (cached) { | ||
@@ -52,0 +52,0 @@ cacheds.push(cached); |
{ | ||
"name": "@quantos/micro-request", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Quantos http client with cache, retry and fallback mechanism", | ||
@@ -5,0 +5,0 @@ "author": "fabriziotognetto <info@quantos.it>", |
@@ -40,3 +40,3 @@ import { createClient, RedisClientType } from 'redis'; | ||
for (const key of ids) { | ||
const cached = await this.get<T>(key); | ||
const cached = await this.get<T>(key, cachePrefix); | ||
if (cached) { | ||
@@ -43,0 +43,0 @@ cacheds.push(cached); |
Sorry, the diff of this file is not supported yet
36693