test-to-dev #1478

Merged
alexandre merged 53 commits from test-to-dev into dev 2023-04-24 06:54:33 +00:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit a5f6991511 - Show all commits

View File

@ -56,8 +56,10 @@ module.exports = Self => {
const email = new Email('campaign-metrics', args);
await email.send();
} catch (error) {
if (error.code !== 'EENVELOPE')
throw error;
if (error.code === 'EENVELOPE')
continue;
throw error;
}
}