Skip to content
Snippets Groups Projects
Commit dd84b9c7 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix(redis): valid integer for ttl

parent 3e51b571
No related branches found
No related tags found
No related merge requests found
/* istanbul ignore file */
import is from '@sindresorhus/is';
import { DateTime } from 'luxon';
import { createClient } from 'redis';
import { logger } from '../../../logger';
......@@ -54,14 +55,22 @@ export async function set(
value: unknown,
ttlMinutes = 5
): Promise<void> {
logger.trace({ namespace, key, ttlMinutes }, 'Saving cached value');
let minutes = ttlMinutes;
if (!is.integer(minutes)) {
if (is.number(minutes)) {
minutes = Math.floor(minutes);
} else {
minutes = 5;
}
}
logger.trace({ namespace, key, minutes }, 'Saving cached value');
await client?.set(
getKey(namespace, key),
JSON.stringify({
value,
expiry: DateTime.local().plus({ minutes: ttlMinutes }),
expiry: DateTime.local().plus({ minutes }),
}),
{ EX: ttlMinutes * 60 }
{ EX: minutes * 60 }
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment