[Webkit-unassigned] [Bug 185269] Range bisector should check the commits for repositories without change in specified range.
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue May 8 22:55:55 PDT 2018
https://bugs.webkit.org/show_bug.cgi?id=185269
Ryosuke Niwa <rniwa at webkit.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #339488|review? |review+
Flags| |
--- Comment #5 from Ryosuke Niwa <rniwa at webkit.org> ---
Comment on attachment 339488
--> https://bugs.webkit.org/attachment.cgi?id=339488
Patch
View in context: https://bugs.webkit.org/attachment.cgi?id=339488&action=review
> Websites/perf.webkit.org/ChangeLog:16
> + (async):
Remove this?
> Websites/perf.webkit.org/public/v3/commit-set-range-bisector.js:35
> + let commits = null;
> + if (startCommit !== endCommit)
> + commits = await CommitLog.fetchBetweenRevisions(repository, startCommit.revision(), endCommit.revision());
> + else
> + commits = [startCommit];
How about just this?
cont commits = startCommit == endCommit ? [startCommit] : await CommitLog.fetchBetweenRevisions(repository, startCommit.revision(), endCommit.revision());
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20180509/5989819f/attachment.html>
More information about the webkit-unassigned
mailing list