Closed
Bug 617968
Opened 14 years ago
Closed 14 years ago
Socorro: Please throttle Firefox 3.6.13 and 3.5.16 crash processing
Categories
(mozilla.org Graveyard :: Server Operations, task)
mozilla.org Graveyard
Server Operations
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: christian, Assigned: jabba)
References
Details
We will be releasing Firefox 3.6.13 and 3.5.16 today. Please throttle the crash reports so crash processing doesn't fall over.
(Had this written yesterday but forgot to save :-/ )
Assignee | ||
Updated•14 years ago
|
Assignee: server-ops → jdow
Assignee | ||
Comment 1•14 years ago
|
||
throttleConditions = cm.Option()
throttleConditions.default = [
('Version', '3.6.13', 10.0), ('Version', '3.5.16', 10.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
]
Will get pushed live in about 10 minutes.
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Comment 2•14 years ago
|
||
actually, you can just drop the "('Version', '3.6.13', 10.0), ('Version', '3.5.16', 10.0)," line entirely. The later rule about "ProductName" will do the Firefox at 10%.
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
•