Skip to content

Commit 4d459b1

Browse files
committed
cacheable - upgrading @keyv/redis to 4.0.2
1 parent 048dc41 commit 4d459b1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/cacheable/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"clean": "rimraf ./dist ./coverage ./node_modules"
2929
},
3030
"devDependencies": {
31-
"@keyv/redis": "^3.0.1",
31+
"@keyv/redis": "^4.0.2",
3232
"@types/node": "^22.9.0",
3333
"@vitest/coverage-v8": "^2.1.4",
3434
"lru-cache": "^11.0.2",

packages/cacheable/src/memory.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -538,8 +538,8 @@ export class CacheableMemory extends Hookified {
538538
public startIntervalCheck() {
539539
if (this._checkInterval > 0) {
540540
if (this._interval) {
541-
// Be overly cautious and clear the interval as we've unref'd it
542-
// and we don't want to leak it
541+
// Be overly cautious and clear the interval as we've unref'd it and we don't want to leak it
542+
/* c8 ignore next 2 */
543543
clearInterval(this._interval);
544544
}
545545

0 commit comments

Comments
 (0)