Comparing version 1.1.57 to 1.1.58
@@ -45,3 +45,3 @@ "use strict"; | ||
if (cacheManager && cacheKey) { | ||
context.calls[task.name].cacheSet = `${cacheKey} - TTL: ${task.cacheConfig.ttl}`; | ||
context.calls[task.name].cacheSet = `${cacheKey.partition}:${cacheKey.key} - TTL: ${task.cacheConfig.ttl}`; | ||
yield cacheManager.setItem(cacheKey, output, task.cacheConfig.ttl); | ||
@@ -48,0 +48,0 @@ } |
{ | ||
"name": "low", | ||
"version": "1.1.57", | ||
"version": "1.1.58", | ||
"description": "a templating driven low-code framework for rapid systems development", | ||
@@ -25,3 +25,3 @@ "main": "lib/index.js", | ||
}, | ||
"gitHead": "952e6c506481f23f16388b2c1cf286749395ead4", | ||
"gitHead": "dded2085c8581773e4fd8d5c07238915bd34d107", | ||
"devDependencies": { | ||
@@ -28,0 +28,0 @@ "@types/jest": "^24.9.0", |
@@ -47,3 +47,3 @@ import { Module } from '../module'; | ||
if (cacheManager && cacheKey) { | ||
context.calls[task.name].cacheSet = `${cacheKey} - TTL: ${(task.cacheConfig as CacheConfig).ttl}`; | ||
context.calls[task.name].cacheSet = `${cacheKey.partition}:${cacheKey.key} - TTL: ${(task.cacheConfig as CacheConfig).ttl}`; | ||
await cacheManager.setItem(cacheKey, output, (task.cacheConfig as CacheConfig).ttl); | ||
@@ -50,0 +50,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
500303