do not send reminder alerts

This commit is contained in:
Alex Tau 2025-08-15 19:30:57 +03:00
parent 5c57e1765e
commit 13fd4b05d9

View file

@ -75,8 +75,9 @@ class BaseChecker:
for alert in alerts:
await send_alert(alert, note="ongoing")
for alert in alerts:
await send_healthchecks_status(alert)
if not self.is_reminder:
for alert in alerts:
await send_healthchecks_status(alert)
async def run_checker(self) -> None:
raise NotImplementedError