From 97ab47022afe93e8db368af4bd5a36ca001c9c19 Mon Sep 17 00:00:00 2001 From: Clara <57916928+clarabakker@users.noreply.github.com> Date: Fri, 3 Jan 2025 13:06:51 -0500 Subject: [PATCH] temporarily disable insulation score action, update changelog --- CHANGELOG.rst | 7 +++++++ chalicelib_fourfront/checks/wfr_checks.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 355be45c..2298ca76 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,13 @@ foursight Change Log ---------- +4.9.8 +===== + +`PR 586: Ignore non-mcools in insulation-score check `_ + +* The insulation score and boundaries caller check won't append a file to its output unless it is the mcool + 4.9.7 ===== diff --git a/chalicelib_fourfront/checks/wfr_checks.py b/chalicelib_fourfront/checks/wfr_checks.py index 5986074d..dbb15dde 100644 --- a/chalicelib_fourfront/checks/wfr_checks.py +++ b/chalicelib_fourfront/checks/wfr_checks.py @@ -2403,7 +2403,7 @@ def insulation_scores_and_boundaries_status(connection, **kwargs): check.summary = str(len(check.full_output['running_runs'])) + ' running|' if check.full_output['needs_runs']: check.summary += str(len(check.full_output['needs_runs'])) + ' missing|' - check.allow_action = True + check.allow_action = False check.status = 'WARN' if check.full_output['completed_runs']: check.summary += str(len(check.full_output['completed_runs'])) + ' completed|'