Skip to content

Commit

Permalink
chore: increase ttl to 20m
Browse files Browse the repository at this point in the history
  • Loading branch information
framp authored Sep 6, 2023
1 parent 6718e9c commit a31f74f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/features/providers/github/commands/misc/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ cache.on('expired', (key) => {
const fetchCached = async <T>(
cacheKey: string,
fetcher: () => Promise<T>,
ttl = 60 * 5
ttl = 60 * 20
) => {
let response: T
if (cache.has(cacheKey)) {
Expand Down

0 comments on commit a31f74f

Please sign in to comment.