From 1ca4d83218c427368209050783a4f862e6e17aa2 Mon Sep 17 00:00:00 2001 From: plazas Date: Tue, 28 Mar 2023 08:04:15 -0700 Subject: [PATCH] Add verification_threshold ro required parameters in cp_verify_alarm.py --- python/lsst/ts/watcher/rules/cp_verify_alarm.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python/lsst/ts/watcher/rules/cp_verify_alarm.py b/python/lsst/ts/watcher/rules/cp_verify_alarm.py index 8de9f038..8cefb291 100644 --- a/python/lsst/ts/watcher/rules/cp_verify_alarm.py +++ b/python/lsst/ts/watcher/rules/cp_verify_alarm.py @@ -89,7 +89,10 @@ def get_schema(cls): type: integer description: Maximum number of failures per detector per test type. default: 8 - required: [calibration_type, ocps_index] + required: + - calibration_type + - ocps_index + - verification_threshold additionalProperties: false """ return yaml.safe_load(schema_yaml)