Title: [220080] trunk/Websites/perf.webkit.org
Revision
220080
Author
rn...@webkit.org
Date
2017-07-31 16:30:25 -0700 (Mon, 31 Jul 2017)

Log Message

Build fix. Fixed a typo. task.id() isn't a thing in this function.

* public/v3/models/test-group.js:
(TestGroup.createWithCustomConfiguration):

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (220079 => 220080)


--- trunk/Websites/perf.webkit.org/ChangeLog	2017-07-31 22:59:40 UTC (rev 220079)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2017-07-31 23:30:25 UTC (rev 220080)
@@ -1,3 +1,10 @@
+2017-07-27  Ryosuke Niwa  <rn...@webkit.org>
+
+        Build fix. Fixed a typo. task.id() isn't a thing in this function.
+
+        * public/v3/models/test-group.js:
+        (TestGroup.createWithCustomConfiguration):
+
 2017-07-11  Ryosuke Niwa  <rn...@webkit.org>
 
         Another build fix.

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


--- trunk/Websites/perf.webkit.org/public/v3/models/test-group.js	2017-07-31 22:59:40 UTC (rev 220079)
+++ trunk/Websites/perf.webkit.org/public/v3/models/test-group.js	2017-07-31 23:30:25 UTC (rev 220080)
@@ -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(task.id(), true);
+            return this.fetchForTask(data['taskId']);
         });
     }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to