Closed
Bug 601787
Opened 15 years ago
Closed 15 years ago
Please make sure Firefox 3.5.14 and 3.6.11 crash reports are not throttled
Categories
(mozilla.org Graveyard :: Server Operations, task)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: christian, Assigned: jabba)
Details
3.5.14 and 3.6.11 going to beta today (throttled on the AUS side). They identify themselves w/oa "pre", "beta", "build", or "rc" tag.
Please make sure the crash reports are unthrottled so that we get feedback
quicker.
I'll file another bug when we are near final to make them throttled again.
Thanks!
| Assignee | ||
Updated•15 years ago
|
Assignee: server-ops → jdow
| Assignee | ||
Comment 1•15 years ago
|
||
Done:
throttleConditions = cm.Option()
throttleConditions.default = [
("Version", '3.5.14', 100.0),
("Version", '3.6.11', 100.0),
("Version", re.compile(r'\..*?[a-zA-Z]+'), 100), # 100% of all alpha, beta or special
("Comments", lambda x: x, 100), # 100% of crashes with comments
("ProductName", lambda x: x[0] == 'F' and x[-1] == 'x', 10), # 10% of Firefox - excluding someone's bogus "Firefox3" product
("ProductName", lambda x: x[0] in 'TSC', 100), # 100% of Thunderbird, SeaMonkey & Camino
(None, True, 0) # reject everything else
]
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Updated•10 years ago
|
Product: mozilla.org → mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•