Skip to content

Commit

Permalink
Marking closed build issues as Fixed to avoid having a verifier/assig…
Browse files Browse the repository at this point in the history
…nee (#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.
  • Loading branch information
vitorguidi authored Oct 2, 2024
1 parent 85004a1 commit 0911670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clusterfuzz/_internal/cron/oss_fuzz_build_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0911670

Please sign in to comment.