Skip to content

Commit

Permalink
cacheable - upgrading @keyv/redis to 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredwray committed Dec 11, 2024
1 parent 048dc41 commit 4d459b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/cacheable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"clean": "rimraf ./dist ./coverage ./node_modules"
},
"devDependencies": {
"@keyv/redis": "^3.0.1",
"@keyv/redis": "^4.0.2",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.4",
"lru-cache": "^11.0.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/cacheable/src/memory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -538,8 +538,8 @@ export class CacheableMemory extends Hookified {
public startIntervalCheck() {
if (this._checkInterval > 0) {
if (this._interval) {
// Be overly cautious and clear the interval as we've unref'd it
// and we don't want to leak it
// Be overly cautious and clear the interval as we've unref'd it and we don't want to leak it
/* c8 ignore next 2 */
clearInterval(this._interval);
}

Expand Down

0 comments on commit 4d459b1

Please sign in to comment.