fix : broken magic number

This commit is contained in:
CarlosZoft
2022-08-06 13:59:50 -03:00
parent 998025104b
commit fb81d1f8ff

View File

@@ -58,7 +58,7 @@ const HOST = process.env.HOST || 'localhost';
const PORT = process.env.PORT || 3000;
const _tokens = new LRUCache<string, string>({
max: 10240,
max: 1024 * 10,
ttl: 1000 * 60 * 5,
});