fix propagation of WrongSwarmError in pollForAllKeys()

pull/1528/head
Audric Ackermann 4 years ago
parent e930348684
commit 2ae259092f
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -208,10 +208,14 @@ export class SwarmPolling {
const groupPromises = this.groupPubkeys.map(async pk => {
return this.pollOnceForKey(pk, true);
});
// if a WrongSwarmError has been triggered, we have to forward it (and in fact we must forward any errors)
// but, we also need to make sure the next pollForAllKeys runs no matter if an error is triggered or not
// the finally here will be invoked even if the catch is throwing an exception
try {
await Promise.all(_.concat(directPromises, groupPromises));
} catch (e) {
window.log.warn('pollForAllKeys swallowing exception: ', e);
throw e;
} finally {
setTimeout(this.pollForAllKeys.bind(this), 2000);
}

Loading…
Cancel
Save