(231401) master to test #1466

Merged
alexm merged 29 commits from 231401_master_to_test into test 2023-04-21 10:38:37 +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); const email = new Email('campaign-metrics', args);
await email.send(); await email.send();
} catch (error) { } catch (error) {
if (error.code !== 'EENVELOPE') if (error.code === 'EENVELOPE')
throw error; continue;
throw error;
} }
} }