Title: [221230] trunk/Websites/perf.webkit.org
Revision
221230
Author
[email protected]
Date
2017-08-26 16:26:16 -0700 (Sat, 26 Aug 2017)

Log Message

Build fix. Creating trying a test group no longer updates the page.

* public/v3/models/test-group.js:
(TestGroup.createWithCustomConfiguration): Added the missing ignoreCache=true.

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (221229 => 221230)


--- trunk/Websites/perf.webkit.org/ChangeLog	2017-08-26 19:09:24 UTC (rev 221229)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2017-08-26 23:26:16 UTC (rev 221230)
@@ -1,3 +1,10 @@
+2017-08-26  Ryosuke Niwa  <[email protected]>
+
+        Build fix. Creating trying a test group no longer updates the page.
+
+        * public/v3/models/test-group.js:
+        (TestGroup.createWithCustomConfiguration): Added the missing ignoreCache=true.
+
 2017-08-21  Dewei Zhu  <[email protected]>
 
         Performance Dashboard should be compatible with PHP 7.

Modified: trunk/Websites/perf.webkit.org/public/v3/models/test-group.js (221229 => 221230)


--- trunk/Websites/perf.webkit.org/public/v3/models/test-group.js	2017-08-26 19:09:24 UTC (rev 221229)
+++ trunk/Websites/perf.webkit.org/public/v3/models/test-group.js	2017-08-26 23:26:16 UTC (rev 221230)
@@ -206,7 +206,7 @@
         const revisionSets = this._revisionSetsFromCommitSets(commitSets);
         const params = {task: task.id(), name: groupName, platform: platform.id(), test: test.id(), repetitionCount, revisionSets};
         return PrivilegedAPI.sendRequest('create-test-group', params).then((data) => {
-            return this.fetchForTask(data['taskId']);
+            return this.fetchForTask(data['taskId'], true);
         });
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to