Title: [198508] trunk/Websites/perf.webkit.org
Revision
198508
Author
rn...@webkit.org
Date
2016-03-21 17:22:14 -0700 (Mon, 21 Mar 2016)

Log Message

Fix A/B testing after r198503.

* public/include/build-requests-fetcher.php:

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (198507 => 198508)


--- trunk/Websites/perf.webkit.org/ChangeLog	2016-03-22 00:06:53 UTC (rev 198507)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2016-03-22 00:22:14 UTC (rev 198508)
@@ -1,5 +1,11 @@
 2016-03-21  Ryosuke Niwa  <rn...@webkit.org>
 
+        Fix A/B testing after r198503.
+
+        * public/include/build-requests-fetcher.php:
+
+2016-03-21  Ryosuke Niwa  <rn...@webkit.org>
+
         Analysis task page is broken after r198479
         https://bugs.webkit.org/show_bug.cgi?id=155735
 

Modified: trunk/Websites/perf.webkit.org/public/include/build-requests-fetcher.php (198507 => 198508)


--- trunk/Websites/perf.webkit.org/public/include/build-requests-fetcher.php	2016-03-22 00:06:53 UTC (rev 198507)
+++ trunk/Websites/perf.webkit.org/public/include/build-requests-fetcher.php	2016-03-22 00:22:14 UTC (rev 198508)
@@ -92,7 +92,7 @@
 
         $root_ids = array();
         foreach ($root_rows as $row) {
-            $repository_id = $row['commit_repository'];
+            $repository_id = $resolve_ids ? $row['repository_name'] : $row['repository_id'];
             $revision = $row['commit_revision'];
             $commit_time = $row['commit_time'];
             array_push($root_ids, $row['commit_id']);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to