taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 90adead540fb1b33786a32b055c9176df1db1785
parent e2f7bc79cd4326f769f370f230041101a099d98c
Author: Florian Dold <florian.dold@gmail.com>
Date:   Tue, 18 Aug 2020 19:38:17 +0530

run exchange with a single thread to avoid DB conflicts

Diffstat:
Mpackages/taler-integrationtests/src/harness.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-integrationtests/src/harness.ts b/packages/taler-integrationtests/src/harness.ts @@ -885,7 +885,7 @@ export class ExchangeService implements ExchangeServiceInterface { this.exchangeHttpProc = this.globalState.spawnService( "taler-exchange-httpd", - ["-c", this.configFilename], + ["-c", this.configFilename, "--num-threads", "1"], `exchange-httpd-${this.name}`, ); }