Skip to content

Commit

Permalink
[#IOPID-2343] fix: config wrong decoder type (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
arcogabbo authored Oct 14, 2024
1 parent 7ca3d79 commit 18d7e16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export const IDecodableConfig = t.intersection([
PDV_TOKENIZER_BASE_PATH: NonEmptyString,

// TTL in seconds for PDV ID key retention (defaults to 30 days)
PDV_IDS_TTL: withDefault(IntegerFromString, 3600 * 24 * 30),
PDV_IDS_TTL: withDefault(t.string, "2592000").pipe(IntegerFromString),

PN_SERVICE_ID: NonEmptyString,

Expand Down

0 comments on commit 18d7e16

Please sign in to comment.