able to set nb max alert in send_email_with_rate_control

This commit is contained in:
Son NK 2020-05-10 10:34:39 +02:00
parent 8244fa01e7
commit ac6d1c1106
1 changed files with 2 additions and 1 deletions

View File

@ -246,6 +246,7 @@ def send_email_with_rate_control(
plaintext, plaintext,
html=None, html=None,
bounced_email: Optional[Message] = None, bounced_email: Optional[Message] = None,
max_alert_24h=MAX_ALERT_24H,
) -> bool: ) -> bool:
"""Same as send_email with rate control over alert_type. """Same as send_email with rate control over alert_type.
For now no more than _MAX_ALERT_24h alert can be sent in the last 24h For now no more than _MAX_ALERT_24h alert can be sent in the last 24h
@ -260,7 +261,7 @@ def send_email_with_rate_control(
.count() .count()
) )
if nb_alert > MAX_ALERT_24H: if nb_alert > max_alert_24h:
LOG.error( LOG.error(
"%s emails were sent to %s in the last 24h, alert type %s", "%s emails were sent to %s in the last 24h, alert type %s",
nb_alert, nb_alert,