bug 872883 - throttle Firefox 21.0 updates at 5%. r=nthomas

git-svn-id: svn://10.0.0.236/trunk@264850 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
asasaki%mozilla.com 2013-05-17 21:50:15 +00:00
parent 114bc51e7b
commit 807b51f663

View File

@ -84,29 +84,29 @@ define('THROTTLE_LOGGING',false);
$productThrottling = array( $productThrottling = array(
'Firefox' => array( 'Firefox' => array(
'10.0' => 15, '10.0' => 5,
'10.0.1' => 15, '10.0.1' => 5,
'10.0.2' => 15, '10.0.2' => 5,
'11.0' => 15, '11.0' => 5,
'12.0' => 15, '12.0' => 5,
'13.0' => 15, '13.0' => 5,
'13.0.1' => 15, '13.0.1' => 5,
'14.0.1' => 15, '14.0.1' => 5,
'15.0' => 15, '15.0' => 5,
'15.0.1' => 15, '15.0.1' => 5,
'16.0' => 15, '16.0' => 5,
'16.0.1' => 15, '16.0.1' => 5,
'16.0.2' => 15, '16.0.2' => 5,
'17.0' => 15, '17.0' => 5,
'17.0.1' => 15, '17.0.1' => 5,
'18.0' => 15, '18.0' => 5,
'18.0.1' => 15, '18.0.1' => 5,
'18.0.2' => 15, '18.0.2' => 5,
'19.0' => 15, '19.0' => 5,
'19.0.1' => 15, '19.0.1' => 5,
'19.0.2' => 15, '19.0.2' => 5,
'20.0' => 15, '20.0' => 5,
'20.0.1' => 15, '20.0.1' => 5,
) )
); );