in bugbot/rules/severity_underestimated.py [0:0]
def get_bz_params(self, date):
fields = [
"assigned_to",
"triage_owner",
"creation_time",
"last_change_time",
"severity",
"votes",
"cc",
"duplicates",
"see_also",
]
params = {
"include_fields": fields,
"resolution": "---",
"bug_type": "defect",
"bug_severity": ["S3", "S4"],
"f1": "keywords",
"o1": "nowords",
"v1": ["meta", "intermittent"],
"f2": "days_elapsed",
"o2": "lessthan",
"v2": self.nweeks * 7,
"j3": "OR",
"f3": "OP",
"f4": "dupe_count",
"o4": "greaterthaneq",
"v4": self.ndups,
"f5": "votes",
"o5": "greaterthaneq",
"v5": self.votes,
"f6": "cc_count",
"o6": "greaterthaneq",
"v6": self.cc,
"f7": "see_also_count",
"o7": "greaterthaneq",
"v7": self.see_also,
"f8": "CP",
"n15": 1,
"f15": "longdesc",
"o15": "casesubstring",
"v15": "could you consider increasing the bug severity?",
}
return params