commit 267714074995aab337b474dce2cb0236c2861a9c parent ffeac825d188fe8643801511797783e47b0fa830 Author: Florian Dold <florian@dold.me> Date: Tue, 21 Feb 2023 19:23:32 +0100 wallet-core: do not retry transaction if long-poll is active Diffstat:
| M | packages/taler-wallet-core/src/operations/pay-peer.ts | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/packages/taler-wallet-core/src/operations/pay-peer.ts b/packages/taler-wallet-core/src/operations/pay-peer.ts @@ -1372,6 +1372,14 @@ export async function processPeerPullCredit( pursePub, }); + // We're already running! + if (ws.activeLongpoll[retryTag]) { + logger.info("peer-pull-credit already in long-polling, returning!"); + return { + type: OperationAttemptResultType.Longpoll, + }; + } + switch (pullIni.status) { case PeerPullPaymentInitiationStatus.PurseDeposited: { // We implement this case so that the "retry" action on a peer-pull-credit transaction