Title: [255694] trunk/Tools
Revision
255694
Author
[email protected]
Date
2020-02-04 14:02:08 -0800 (Tue, 04 Feb 2020)

Log Message

results.webkit.org: Better order upload callbacks
https://bugs.webkit.org/show_bug.cgi?id=207219

Reviewed by Aakash Jain.

Order upload callbacks more deliberately so that the quickest callbacks
that are least likely to link to information from unfinished callbacks are
executed first.

* resultsdbpy/resultsdbpy/model/model.py:
(Model.__init__): Generate buildbot links first, then generate a failure
list, then generate the collective suite results and finally, individual
test results.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (255693 => 255694)


--- trunk/Tools/ChangeLog	2020-02-04 21:42:07 UTC (rev 255693)
+++ trunk/Tools/ChangeLog	2020-02-04 22:02:08 UTC (rev 255694)
@@ -1,3 +1,19 @@
+2020-02-04  Jonathan Bedard  <[email protected]>
+
+        results.webkit.org: Better order upload callbacks
+        https://bugs.webkit.org/show_bug.cgi?id=207219
+
+        Reviewed by Aakash Jain.
+
+        Order upload callbacks more deliberately so that the quickest callbacks
+        that are least likely to link to information from unfinished callbacks are
+        executed first.
+
+        * resultsdbpy/resultsdbpy/model/model.py:
+        (Model.__init__): Generate buildbot links first, then generate a failure
+        list, then generate the collective suite results and finally, individual
+        test results.
+
 2020-02-04  Aakash Jain  <[email protected]>
 
         [EWS] Do not remove TestWebKitAPI prefix from api test failures

Modified: trunk/Tools/resultsdbpy/resultsdbpy/model/model.py (255693 => 255694)


--- trunk/Tools/resultsdbpy/resultsdbpy/model/model.py	2020-02-04 21:42:07 UTC (rev 255693)
+++ trunk/Tools/resultsdbpy/resultsdbpy/model/model.py	2020-02-04 22:02:08 UTC (rev 255694)
@@ -81,7 +81,7 @@
             ttl_seconds=self.default_ttl_seconds,
         )
 
-        for context in [self.suite_context, self.test_context, self.ci_context, self.failure_context]:
+        for context in [self.ci_context, self.failure_context, self.suite_context, self.test_context]:
             self.upload_context.register_upload_callback(context.name, context.register)
 
         self.archive_context = ArchiveContext(
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to