Skip to content

Commit

Permalink
Fix the name for the performance impact field (#3905)
Browse files Browse the repository at this point in the history
Fixes #3899
  • Loading branch information
PromiseFru authored Dec 7, 2023
1 parent d220467 commit 98ad14b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bugbug/models/bugtype.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ def bug_to_types(
):
types.add("security")

if "cf_performance" in bug and bug["cf_performance"] not in ("---", "?"):
if "cf_performance_impact" in bug and bug["cf_performance_impact"] not in (
"---",
"?",
):
types.add("performance")

if "cf_crash_signature" in bug and bug["cf_crash_signature"] not in ("", "---"):
Expand Down

0 comments on commit 98ad14b

Please sign in to comment.