Changeset 116123 in webkit


Ignore:
Timestamp:
May 4, 2012 10:44:08 AM (12 years ago)
Author:
ojan@chromium.org
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:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r116119 r116123  
     12012-05-03  Ojan Vafai  <ojan@chromium.org>
     2
     3        Store fewer runs by default in the flakiness dashboard
     4        https://bugs.webkit.org/show_bug.cgi?id=85568
     5
     6        Reviewed by Dirk Pranke.
     7
     8        This will greatly shrink the size of the json files we load,
     9        resulting in a much faster initial load. People rarely care
     10        about more than 100 runs. For the cases they do, they can still click
     11        the show all runs checkbox to show 500 runs.
     12
     13        * TestResultServer/model/jsonresults.py:
     14
    1152012-05-04  Christophe Dumez  <christophe.dumez@intel.com>
    216
  • trunk/Tools/TestResultServer/model/jsonresults.py

    r112442 r116123  
    5050JSON_RESULTS_HIERARCHICAL_VERSION = 4
    5151JSON_RESULTS_MAX_BUILDS = 500
    52 JSON_RESULTS_MAX_BUILDS_SMALL = 200
     52JSON_RESULTS_MAX_BUILDS_SMALL = 100
    5353
    5454
Note: See TracChangeset for help on using the changeset viewer.