diff options
author | Antoine A <> | 2024-10-29 14:16:59 +0100 |
---|---|---|
committer | Antoine A <> | 2024-10-29 14:16:59 +0100 |
commit | d737699d80fe3d76b0c43b55c9b0e719bc9b3043 (patch) | |
tree | b14512b27b5992c2084641bc60f0a6cc065278f4 | |
parent | 3ea8450261ddb0b344e8df8285b8aedd205b33c0 (diff) |
test: fix for pwd auth deprecation
-rw-r--r-- | src/auditor/generate-auditor-basedb.conf | 2 | ||||
-rw-r--r-- | src/benchmark/benchmark-common.conf | 1 | ||||
-rw-r--r-- | src/testing/test-taler-exchange-wirewatch-postgres.conf | 1 | ||||
-rw-r--r-- | src/testing/test_bank_api.conf | 1 | ||||
-rw-r--r-- | src/testing/test_exchange_api.conf | 1 |
5 files changed, 6 insertions, 0 deletions
diff --git a/src/auditor/generate-auditor-basedb.conf b/src/auditor/generate-auditor-basedb.conf index cdfffdbb0..a9928bb97 100644 --- a/src/auditor/generate-auditor-basedb.conf +++ b/src/auditor/generate-auditor-basedb.conf @@ -37,6 +37,7 @@ IBAN_PAYTO_BIC = SANDBOXX SERVE = tcp PORT = 8082 PWD_HASH_CONFIG = { "cost": 4 } +PWD_AUTH_COMPAT = yes [libeufin-bankdb-postgres] CONFIG = postgresql:///auditor-basedb @@ -91,6 +92,7 @@ SUGGESTED_WITHDRAWAL_EXCHANGE = http://localhost:8081/ SERVE = tcp PORT = 8082 PWD_HASH_CONFIG = { "cost": 4 } +PWD_AUTH_COMPAT = yes [auditor] BASE_URL = http://localhost:8083/ diff --git a/src/benchmark/benchmark-common.conf b/src/benchmark/benchmark-common.conf index c81ff2814..89da0e4bd 100644 --- a/src/benchmark/benchmark-common.conf +++ b/src/benchmark/benchmark-common.conf @@ -96,6 +96,7 @@ RAM_LIMIT=10000000 [libeufin-bank] CURRENCY = EUR PWD_HASH_CONFIG = { "cost": 4 } +PWD_AUTH_COMPAT = yes [libeufin-nexus] DB_CONNECTION="postgresql:///talercheck" diff --git a/src/testing/test-taler-exchange-wirewatch-postgres.conf b/src/testing/test-taler-exchange-wirewatch-postgres.conf index 96b3121ab..fc13371d8 100644 --- a/src/testing/test-taler-exchange-wirewatch-postgres.conf +++ b/src/testing/test-taler-exchange-wirewatch-postgres.conf @@ -67,6 +67,7 @@ SUGGESTED_WITHDRAWAL_EXCHANGE = http://localhost:8081/ SERVE = tcp PORT = 8082 PWD_HASH_CONFIG = { "cost": 4 } +PWD_AUTH_COMPAT = yes # Need at least one coin, otherwise Exchange # refuses to start. diff --git a/src/testing/test_bank_api.conf b/src/testing/test_bank_api.conf index 7e0543e6d..42c8bfe2d 100644 --- a/src/testing/test_bank_api.conf +++ b/src/testing/test_bank_api.conf @@ -22,3 +22,4 @@ SUGGESTED_WITHDRAWAL_EXCHANGE = http://localhost:8081/ SERVE = tcp PORT = 8082 PWD_HASH_CONFIG = { "cost": 4 } +PWD_AUTH_COMPAT = yes diff --git a/src/testing/test_exchange_api.conf b/src/testing/test_exchange_api.conf index 52365ea61..0f03a8c79 100644 --- a/src/testing/test_exchange_api.conf +++ b/src/testing/test_exchange_api.conf @@ -16,6 +16,7 @@ IBAN_PAYTO_BIC = SANDBOXX SERVE = tcp PORT = 8082 PWD_HASH_CONFIG = { "cost": 4 } +PWD_AUTH_COMPAT = yes [libeufin-bankdb-postgres] CONFIG = postgresql:///talercheck |