mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 09:52:38 +02:00
🔀 Merge remote-tracking branch 'origin/develop'
This commit is contained in:
commit
4c4d3b69b2
2 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
- 🐛 — Fix bug in retry_before_notification logic
|
||||||
|
|
||||||
## 0.7.1
|
## 0.7.1
|
||||||
|
|
||||||
Date: 2025-01-15
|
Date: 2025-01-15
|
||||||
|
|
|
@ -56,7 +56,7 @@ def need_alert(
|
||||||
task.contiguous_failures = task.retry_before_notification
|
task.contiguous_failures = task.retry_before_notification
|
||||||
# Severity has not changed, but there has been enough failures
|
# Severity has not changed, but there has been enough failures
|
||||||
# to create a notification
|
# to create a notification
|
||||||
elif task.retry_before_notification == task.contiguous_failures:
|
elif task.retry_before_notification + 1 == task.contiguous_failures:
|
||||||
send_notif = True
|
send_notif = True
|
||||||
|
|
||||||
return send_notif
|
return send_notif
|
||||||
|
|
Loading…
Reference in a new issue