From 091167064f23b63cc4cf3fc42a5a16296515cf0a Mon Sep 17 00:00:00 2001 From: Vitor Guidi Date: Wed, 2 Oct 2024 14:48:37 -0300 Subject: [PATCH] Marking closed build issues as Fixed to avoid having a verifier/assignee (#4289) While trying to close bugs through the oss-fuzz-build-stats cron, we get a 400 reply from buganizer complaining about invalid input. This boils down to: ``` [redacted] Issues with status VERIFIED must have an assignee, Issues with status VERIFIED must have a verifier ``` To avoid this, we change these to be fixed instead. --- src/clusterfuzz/_internal/cron/oss_fuzz_build_status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clusterfuzz/_internal/cron/oss_fuzz_build_status.py b/src/clusterfuzz/_internal/cron/oss_fuzz_build_status.py index 667182beb5..58f1238271 100644 --- a/src/clusterfuzz/_internal/cron/oss_fuzz_build_status.py +++ b/src/clusterfuzz/_internal/cron/oss_fuzz_build_status.py @@ -161,7 +161,7 @@ def close_bug(issue_tracker, issue_id, project_name): (project_name, issue_id)) issue = issue_tracker.get_original_issue(issue_id) - issue.status = 'Verified' + issue.status = 'Fixed' issue.save( new_comment='The latest build has succeeded, closing this issue.', notify=True)