- Add setting EMAIL_NOTIFICATION_TIMEOUT. Defaut 30000 ms (30s).

Thanks to xet7 !

Closes #2203
This commit is contained in:
Lauri Ojansivu 2019-02-25 18:10:36 +02:00
parent ef85b71ee4
commit 7c1d6e4d2e
5 changed files with 17 additions and 2 deletions

View file

@ -36,7 +36,7 @@ Meteor.startup(() => {
} catch (e) {
return;
}
}, 30000);
}, process.env.EMAIL_NOTIFICATION_TIMEOUT || 30000);
});
});