Closed
Bug 814359
Opened 13 years ago
Closed 13 years ago
Please throttle updates to TB 17
Categories
(Release Engineering :: Release Requests, defect)
Release Engineering
Release Requests
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: standard8, Assigned: kmoir)
References
Details
Attachments
(1 file, 2 obsolete files)
|
3.46 KB,
patch
|
bhearsum
:
review+
kmoir
:
checked-in+
|
Details | Diff | Splinter Review |
We've got an add-on causing a high-crash volume in bug 785370, although the author has a beta out which fixes the issue (and so will hopefully have a complete fix out in the next 24 hours), we'd like to throttle updates to manual-only to reduce the exposure.
We'll then un-throttle once the add-on has been published and we've confirmed we've stopped or slowed the flow of crashes.
| Assignee | ||
Updated•13 years ago
|
Assignee: nobody → kmoir
| Assignee | ||
Comment 1•13 years ago
|
||
| Assignee | ||
Comment 2•13 years ago
|
||
Attachment #684390 -
Attachment is obsolete: true
| Assignee | ||
Comment 3•13 years ago
|
||
missed 16.0.2 the first time
Attachment #684391 -
Attachment is obsolete: true
Updated•13 years ago
|
Attachment #684395 -
Flags: review+
| Assignee | ||
Comment 4•13 years ago
|
||
Comment on attachment 684395 [details] [diff] [review]
patch
and retagged as AUS2_PRODUCTION
Attachment #684395 -
Flags: checked-in+
| Assignee | ||
Comment 5•13 years ago
|
||
throttled
Comment 6•13 years ago
|
||
I had to push this fix because the patch here caused us to overwrite productThrottling with an empty array :(
Index: config-dist.php
===================================================================
RCS file: /cvsroot/mozilla/webtools/aus/xml/inc/config-dist.php,v
retrieving revision 1.236
diff -u -r1.236 config-dist.php
--- config-dist.php 22 Nov 2012 17:28:05 -0000 1.236
+++ config-dist.php 22 Nov 2012 17:57:29 -0000
@@ -79,7 +79,10 @@
// override global levels. If it is off, this still works. For example, this
// is 10% throttling (only 10% of the time updates are offered):
//
- $productThrottling = array(
+// NOTE: "FULLY THROTTLED" == 0
+// "UNTHROTTLED" == 100 (or remove the entry)
+
+$productThrottling = array(
'Firefox' => array(
'10.0' => 0,
'10.0.1' => 0,
@@ -111,14 +114,9 @@
'16.0' => 0,
'16.0.1' => 0,
'16.0.2' => 0
- )
+ )
);
-// NOTE: "FULLY THROTTLED" == 0
-// "UNTHROTTLED" == 100 (or remove the entry)
-$productThrottling = array(
-);
-
// List of exceptions for throttling.
//
// $throttleExceptions = array(
Updated•12 years ago
|
Product: mozilla.org → Release Engineering
You need to log in
before you can comment on or make changes to this bug.
Description
•