Skip to content

Commit

Permalink
Merge pull request #550 from brandonsavage/bug748774
Browse files Browse the repository at this point in the history
Fixes bug 748774, 100% throttling for all nightly* builds (fix by lauraxt)
  • Loading branch information
brandonsavage committed May 2, 2012
2 parents 9e8d937 + 2ecbb28 commit a1c7332
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/config/collectorconfig.py.dist
Expand Up @@ -133,7 +133,8 @@ neverDiscard.fromStringConverter = cm.booleanConverter
throttleConditions = cm.Option()
throttleConditions.default = throttleConditions.default = [
("Comments", lambda x: x, 100), # 100% of crashes with comments
("ReleaseChannel", lambda x: x in ("nightly", "aurora", "beta", "esr"), 100),
("ReleaseChannel", lambda x: x in ("aurora", "beta", "esr"), 100),
("ReleaseChannel", lambda x: x.startswith('nightly'), 100),
("ProductName", 'Firefox', 10), # 10% of Firefox
("ProductName", 'Fennec', 100), # 100% of Fennec
("Version", re.compile(r'\..*?[a-zA-Z]+'), 100), # 100% of all alpha, beta or special
Expand Down

0 comments on commit a1c7332

Please sign in to comment.