* public/include/report-processor.php:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@237065
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2018-10-11 Ryosuke Niwa <rniwa@webkit.org>
+
+ Build fix after r236956. Use array_get to avoid warnings.
+
+ * public/include/report-processor.php:
+
2018-10-09 Dewei Zhu <dewei_zhu@apple.com>
Performance dashboard should show added iterations due failed build requests.
}
} else {
$metrics = $test_row ? array_get($test_row['metrics'], $metric_name) : NULL;
- $metric_id = $metrics ? $metrics[''] : NULL;
+ $metric_id = $metrics ? array_get($metrics, '') : NULL;
if (!$metric_id)
$metric_id = $this->db->select_or_insert_row('test_metrics', 'metric', array('name' => $metric_name, 'test' => $test_id));
if (!$metric_id)