Title: [116123] trunk/Tools
Revision
116123
Author
o...@chromium.org
Date
2012-05-04 10:44:08 -0700 (Fri, 04 May 2012)

Log Message

Store fewer runs by default in the flakiness dashboard
https://bugs.webkit.org/show_bug.cgi?id=85568

Reviewed by Dirk Pranke.

This will greatly shrink the size of the json files we load,
resulting in a much faster initial load. People rarely care
about more than 100 runs. For the cases they do, they can still click
the show all runs checkbox to show 500 runs.

* TestResultServer/model/jsonresults.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (116122 => 116123)


--- trunk/Tools/ChangeLog	2012-05-04 17:41:39 UTC (rev 116122)
+++ trunk/Tools/ChangeLog	2012-05-04 17:44:08 UTC (rev 116123)
@@ -1,3 +1,17 @@
+2012-05-03  Ojan Vafai  <o...@chromium.org>
+
+        Store fewer runs by default in the flakiness dashboard
+        https://bugs.webkit.org/show_bug.cgi?id=85568
+
+        Reviewed by Dirk Pranke.
+
+        This will greatly shrink the size of the json files we load,
+        resulting in a much faster initial load. People rarely care
+        about more than 100 runs. For the cases they do, they can still click
+        the show all runs checkbox to show 500 runs.
+
+        * TestResultServer/model/jsonresults.py:
+
 2012-05-04  Christophe Dumez  <christophe.du...@intel.com>
 
         [EFL] Frame load callbacks output is missing for redirections

Modified: trunk/Tools/TestResultServer/model/jsonresults.py (116122 => 116123)


--- trunk/Tools/TestResultServer/model/jsonresults.py	2012-05-04 17:41:39 UTC (rev 116122)
+++ trunk/Tools/TestResultServer/model/jsonresults.py	2012-05-04 17:44:08 UTC (rev 116123)
@@ -49,7 +49,7 @@
 JSON_RESULTS_MIN_TIME = 5
 JSON_RESULTS_HIERARCHICAL_VERSION = 4
 JSON_RESULTS_MAX_BUILDS = 500
-JSON_RESULTS_MAX_BUILDS_SMALL = 200
+JSON_RESULTS_MAX_BUILDS_SMALL = 100
 
 
 def _add_path_to_trie(path, value, trie):
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to