continue
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Joan Sanchez 2023-04-18 10:18:44 +02:00
parent aabc4ec58d
commit a5f6991511
1 changed files with 4 additions and 2 deletions

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;
}
}