Skip to content

Commit

Permalink
fix(config): default names cache TTL to one hour
Browse files Browse the repository at this point in the history
This aligns the default with the ADR, and likely the cause of some of the pain felt by operators.
  • Loading branch information
dtfiedler authored and djwhitt committed Jan 30, 2025
1 parent 3f613ec commit fbbd411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ export const ARNS_ON_DEMAND_CIRCUIT_BREAKER_RESET_TIMEOUT_MS =

export const ARNS_NAMES_CACHE_TTL_SECONDS = +env.varOrDefault(
'ARNS_NAMES_CACHE_TTL_SECONDS',
`${5 * 60}`, // 5 minutes
`${60 * 60}`, // 1 hour
);

export const ARNS_NAME_LIST_CACHE_MISS_REFRESH_INTERVAL_SECONDS =
Expand Down

0 comments on commit fbbd411

Please sign in to comment.