commit 6e276e6adbd4433169f7bfd7b28a45a9738ff63f parent c9a840c1bd128ea46d47d5e5256771689ef2e5e8 Author: Florian Dold <florian@dold.me> Date: Thu, 17 Jul 2025 11:42:24 +0200 decrease reserve closing delay for GLS deployment Diffstat:
| M | inventories/host_vars/taler-gls-test-01/config.yml | | | 2 | ++ |
| M | roles/exchange/templates/etc/taler-exchange/conf.d/exchange-business.conf.j2 | | | 5 | +++++ |
2 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/inventories/host_vars/taler-gls-test-01/config.yml b/inventories/host_vars/taler-gls-test-01/config.yml @@ -65,6 +65,8 @@ KYC_THANK_YOU_URL: https://taler.gls.de/thank-you-kyc # Tool to use for sanction list checking EXCHANGE_SANCTION_HELPER: taler-exchange-helper-sanctions-dummy +RESERVE_CLOSING_DELAY: 5d + # Secrets are inlined in this file. HAVE_SECRETS: true diff --git a/roles/exchange/templates/etc/taler-exchange/conf.d/exchange-business.conf.j2 b/roles/exchange/templates/etc/taler-exchange/conf.d/exchange-business.conf.j2 @@ -66,3 +66,8 @@ MIN_ROW_FILENAME = ${HOME}/.cache/sanctionscheck-offset.bin # config files with restricted permissions. @inline-secret@ kyc-provider-kycaid-individual ../secrets/exchange-kyc-provider-individual.secret.conf @inline-secret@ kyc-provider-kycaid-business ../secrets/exchange-kyc-provider-business.secret.conf + +{% if RESERVE_CLOSING_DELAY is defined %} +[exchangedb] +IDLE_RESERVE_EXPIRATION_TIME = {{ RESERVE_CLOSING_DELAY }} +{% endif %}