Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
fix(arns): use new env var
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Jun 27, 2024
1 parent 1d77cd7 commit 3b7ee23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/system.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const contract: AoIORead = IO.init({
// TODO: this could be done using any KV store - or in memory. For now, we are using LMDB for persistence.
export const cache = new LmdbKVStore({
dbPath: config.ARNS_CACHE_PATH,
ttlSeconds: config.RESOLVER_CACHE_TTL_MS / 1000,
ttlSeconds: config.ARNS_CACHE_TTL_MS / 1000,
});

const parallelLimit = pLimit(100);
Expand Down

0 comments on commit 3b7ee23

Please sign in to comment.