From: Patrick Donnelly Date: Mon, 4 Aug 2025 14:48:00 +0000 (-0400) Subject: script/redmine-upkeep: correct filter out of upkeep-failed X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=76048cc2e4629a829bcf564a18db520d543c38b9;p=ceph.git script/redmine-upkeep: correct filter out of upkeep-failed "!~" is the proper filter for "does not contain". Signed-off-by: Patrick Donnelly --- diff --git a/src/script/redmine-upkeep.py b/src/script/redmine-upkeep.py index 71a64d481d5ff..c760cad68e8b5 100755 --- a/src/script/redmine-upkeep.py +++ b/src/script/redmine-upkeep.py @@ -963,7 +963,7 @@ h2. Update Payload "project_id": self.project_id, "sort": f'cf_{REDMINE_CUSTOM_FIELD_ID_UPKEEP_TIMESTAMP}', "status_id": "*", - f"cf_{REDMINE_CUSTOM_FIELD_ID_TAGS}": "!upkeep-failed", + f"cf_{REDMINE_CUSTOM_FIELD_ID_TAGS}": "!~upkeep-failed", } #f"cf_{REDMINE_CUSTOM_FIELD_ID_UPKEEP_TIMESTAMP}": f"<={cutoff_date}", # Not updated recently