xcally-nest-library 0.0.37-XM3778-1765535159 → 0.0.37-XM3778-1765541607
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -58,8 +58,7 @@ export class CachedService {
|
|
|
58
58
|
const result = await fn();
|
|
59
59
|
|
|
60
60
|
// Store in cache
|
|
61
|
-
|
|
62
|
-
this.logger.debug(`Cached result for key: ${key} - Set status: ${cacheSetResult !== undefined}`);
|
|
61
|
+
await this.cacheManager.set(key, JSON.stringify(result));
|
|
63
62
|
|
|
64
63
|
return result;
|
|
65
64
|
} catch (error) {
|