2 Comments
⭠ Return to thread

Does rolling back a transaction include removing the idempotency key from the in-memory db ? Why does clients have to wait 24 hrs to retry ?

Expand full comment

24 hours is the expiry time of a specific idempotency key. So client could retry many times with the same key within 24 hours.

> Does rolling back a transaction include removing the idempotency key from the in-memory db

this would be my guess.

Expand full comment