Closed
Bug 650109
Opened 14 years ago
Closed 14 years ago
Please unthrottle Firefox 4.0.1, Firefox 3.6.17, and Firefox 3.5.19 crash reports
Categories
(Socorro :: General, task)
Socorro
General
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: christian, Assigned: jabba)
Details
Attachments
(1 file)
119 bytes,
patch
|
lars
:
review+
rhelmer
:
review+
|
Details | Diff | Splinter Review |
Please unthrottle Firefox 4.0.1, Firefox 3.6.17, and Firefox 3.5.19 crash reports.
We are planning to go to beta soon (not today) and would like the crash reports unthrottled for these 3 releases.
Thanks!
Upping priority, we need this as the updates went out Friday and today.
Severity: major → critical
Comment 2•14 years ago
|
||
Assignee: nobody → laura
Status: NEW → ASSIGNED
Attachment #526980 -
Flags: review?(lars)
Attachment #526980 -
Flags: feedback?
Updated•14 years ago
|
Attachment #526980 -
Flags: feedback? → review?(rhelmer)
Updated•14 years ago
|
Attachment #526980 -
Flags: review?(lars) → review+
Assignee | ||
Comment 4•14 years ago
|
||
Applied the patch and restarted apache:
throttleConditions = cm.Option()
throttleConditions.default = [
("Version", "3.5.19", 100.0),
("Version", "3.6.17", 100.0),
("Version", "4.0.1", 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 'TSCF', 100), # 100% of Thunderbird, SeaMonkey, Camino, and Fennec. This rule must stay AFTER the Firefox rule.
(None, True, 0) # reject everything else
]
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Updated•14 years ago
|
Attachment #526980 -
Flags: review?(rhelmer) → review+
Comment 5•14 years ago
|
||
Checked this into branch, so it'll go out with 1.7.7:
Committed revision 3090.
Not landed on trunk (assuming we'll revert this before 1.7.8 goes out).
Updated•13 years ago
|
Component: Socorro → General
Product: Webtools → Socorro
You need to log in
before you can comment on or make changes to this bug.
Description
•