Add ESR channel in all dashboards. Fixes #31
This commit is contained in:
Родитель
87d43d7f48
Коммит
74343f3243
|
@ -12,6 +12,7 @@
|
|||
<option>beta</option>
|
||||
<option>aurora</option>
|
||||
<option>nightly</option>
|
||||
<option>esr</option>
|
||||
</select>
|
||||
<br>
|
||||
<table id="table">
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
<option>beta</option>
|
||||
<option>aurora</option>
|
||||
<option>nightly</option>
|
||||
<option>esr</option>
|
||||
</select>
|
||||
<input type="text" name="signature" id="signature" placeholder="Signature...">
|
||||
<button id="signatureButton">Get correlations</button>
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
<option>beta</option>
|
||||
<option>aurora</option>
|
||||
<option>nightly</option>
|
||||
<option>esr</option>
|
||||
</select>
|
||||
<label for="sortBy">Sort by:</label>
|
||||
<select name="sortBy" id="sortBy">
|
||||
|
|
|
@ -311,7 +311,7 @@ def get_with_retries(url, params=None, headers=None):
|
|||
|
||||
if __name__ == "__main__":
|
||||
parser = argparse.ArgumentParser(description='Track')
|
||||
parser.add_argument('-c', '--channels', action='store', nargs='+', default=['release', 'beta', 'aurora', 'nightly'], help='the channels')
|
||||
parser.add_argument('-c', '--channels', action='store', nargs='+', default=['release', 'beta', 'aurora', 'nightly', 'esr'], help='the channels')
|
||||
parser.add_argument('-d', '--date', action='store', default='yesterday', help='the end date')
|
||||
parser.add_argument('-D', '--duration', action='store', default=11, help='the duration')
|
||||
parser.add_argument('-t', '--tclimit', action='store', default=200, help='number of top crashes to retrieve')
|
||||
|
|
Загрузка…
Ссылка в новой задаче