fix: update dockerfile

This commit is contained in:
2025-01-06 16:19:32 +01:00
parent 53c4d5b129
commit 90fcb1e4cd
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,6 @@ export function createCache<T>(
},
set(key: string, value: T | unknown, opts: SetCacheOptions = {}) {
console.log("Setting cache", key);
const now = Date.now();
const expiresIn = opts.expires ?? createOpts.expires;
const expiresAt = expiresIn ? now + expiresIn : undefined;