* public/v3/models/test-group.js:
(TestGroup.createWithCustomConfiguration): Added the missing ignoreCache=true.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@221230
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2017-08-26 Ryosuke Niwa <rniwa@webkit.org>
+
+ 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 <dewei_zhu@apple.com>
Performance Dashboard should be compatible with PHP 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);
});
}