commit 16408595945b83dcc8dc773cc5c1c84eb36ecb2b
parent 8d008641a02c4bc0637b514b55fa414d420b8591
Author: Florian Dold <florian@dold.me>
Date: Fri, 10 Feb 2023 19:47:59 +0100
taler-wallet-cli: stop wallet properly
Diffstat:
3 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/packages/taler-harness/src/integrationtests/test-withdrawal-manual.ts b/packages/taler-harness/src/integrationtests/test-withdrawal-manual.ts
@@ -21,9 +21,11 @@ import { GlobalTestState } from "../harness/harness.js";
import { createSimpleTestkudosEnvironment } from "../harness/helpers.js";
import { WalletApiOperation, BankApi } from "@gnu-taler/taler-wallet-core";
import {
- AbsoluteTime,
+ AbsoluteTime, j2s, Logger,
} from "@gnu-taler/taler-util";
+const logger = new Logger("test-withdrawal-manual.ts");
+
/**
* Run test for basic, bank-integrated withdrawal.
*/
@@ -43,7 +45,9 @@ export async function runWithdrawalManualTest(t: GlobalTestState) {
const tStart = AbsoluteTime.now();
+ logger.info("starting AcceptManualWithdrawal request");
// We expect this to return immediately.
+
const wres = await wallet.client.call(
WalletApiOperation.AcceptManualWithdrawal,
{
@@ -52,6 +56,9 @@ export async function runWithdrawalManualTest(t: GlobalTestState) {
},
);
+ logger.info("AcceptManualWithdrawal finished");
+ logger.info(`result: ${j2s(wres)}`);
+
// Check that the request did not go into long-polling.
const duration = AbsoluteTime.difference(tStart, AbsoluteTime.now());
if (duration.d_ms > 5 * 1000) {
diff --git a/packages/taler-wallet-cli/src/index.ts b/packages/taler-wallet-cli/src/index.ts
@@ -306,7 +306,9 @@ async function withWallet<T>(
return w.handleCoreApiRequest(operation, "my-req", payload);
},
};
- return await f(ctx);
+ const result = await f(ctx);
+ w.stop();
+ return result;
}
}
diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts b/packages/taler-wallet-core/src/operations/withdraw.ts
@@ -2040,7 +2040,7 @@ export async function createManualWithdrawal(
x.exchangeDetails,
x.exchangeTrust,
])
- .runReadWrite(async (tx) => {
+ .runReadOnly(async (tx) => {
return await getFundingPaytoUris(tx, withdrawalGroup.withdrawalGroupId);
});