[go: up one dir, main page]

Skip to content

Commit

Permalink
fix : broken magic number
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosZoft committed Aug 6, 2022
1 parent 9980251 commit fb81d1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/keck/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});

Expand Down

0 comments on commit fb81d1f

Please sign in to comment.