From 7c59dd4afcd8e912f65af2866f44fb48e4f46716 Mon Sep 17 00:00:00 2001 From: Cyberes Date: Wed, 22 Nov 2023 23:52:35 -0700 Subject: [PATCH] remove existing down check --- fail-overdue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fail-overdue.py b/fail-overdue.py index 969d00f..f73ec28 100644 --- a/fail-overdue.py +++ b/fail-overdue.py @@ -33,7 +33,7 @@ def main(args): check_timeout = check["attrs"]["check_timeout"] or args.default_timeout # If the check is overdue. - if current_time - last_check_time > check_interval + check_timeout and check['attrs']['state'] != 3: + if current_time - last_check_time > check_interval + check_timeout: headers = {'Accept': 'application/json', 'Content-Type': 'application/json'} next_check_time = last_check_time + check_interval + check_timeout