diff options
-rw-r--r-- | packages/taler-wallet-core/src/wallet.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/wallet.ts b/packages/taler-wallet-core/src/wallet.ts index 905d9220a..0590251e3 100644 --- a/packages/taler-wallet-core/src/wallet.ts +++ b/packages/taler-wallet-core/src/wallet.ts @@ -348,9 +348,9 @@ async function runTaskLoop( if (maxRetries && p.retryInfo && p.retryInfo.retryCounter > maxRetries) { logger.warn( - `stopping, as ${maxRetries} retries are exceeded in an operation of type ${p.type}`, + `skipping, as ${maxRetries} retries are exceeded in an operation of type ${p.type}`, ); - return; + continue; } } |