mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
disabled email notifications for gateway and relay health check, keeping
the instance relay email for instance admins
This commit is contained in:
@@ -931,15 +931,17 @@ export const gatewayV2ServiceFactory = ({
|
||||
}))
|
||||
);
|
||||
|
||||
await smtpService.sendMail({
|
||||
recipients: admins.map((admin) => admin.user.email).filter((v): v is string => !!v),
|
||||
subjectLine: "Gateway Health Alert",
|
||||
substitutions: {
|
||||
type: "gateway",
|
||||
names: gatewayNames
|
||||
},
|
||||
template: SmtpTemplates.HealthAlert
|
||||
});
|
||||
// Temporarily disabled email notifications due to excessive noise. Will be revised later
|
||||
//
|
||||
// await smtpService.sendMail({
|
||||
// recipients: admins.map((admin) => admin.user.email).filter((v): v is string => !!v),
|
||||
// subjectLine: "Gateway Health Alert",
|
||||
// substitutions: {
|
||||
// type: "gateway",
|
||||
// names: gatewayNames
|
||||
// },
|
||||
// template: SmtpTemplates.HealthAlert
|
||||
// });
|
||||
|
||||
await Promise.all(gateways.map((gw) => gatewayV2DAL.updateById(gw.id, { healthAlertedAt: new Date() })));
|
||||
} catch (error) {
|
||||
|
||||
@@ -1268,15 +1268,17 @@ export const relayServiceFactory = ({
|
||||
}))
|
||||
);
|
||||
|
||||
await smtpService.sendMail({
|
||||
recipients: admins.map((admin) => admin.user.email).filter((v): v is string => !!v),
|
||||
subjectLine: "Relay Health Alert",
|
||||
substitutions: {
|
||||
type: "relay",
|
||||
names: relayNames
|
||||
},
|
||||
template: SmtpTemplates.HealthAlert
|
||||
});
|
||||
// Temporarily disabled email notifications due to excessive noise. Will be revised later
|
||||
//
|
||||
// await smtpService.sendMail({
|
||||
// recipients: admins.map((admin) => admin.user.email).filter((v): v is string => !!v),
|
||||
// subjectLine: "Relay Health Alert",
|
||||
// substitutions: {
|
||||
// type: "relay",
|
||||
// names: relayNames
|
||||
// },
|
||||
// template: SmtpTemplates.HealthAlert
|
||||
// });
|
||||
}
|
||||
|
||||
await Promise.all(relays.map((r) => relayDAL.updateById(r.id, { healthAlertedAt: new Date() })));
|
||||
|
||||
Reference in New Issue
Block a user