diff --git a/utils/flakiness-dashboard/processing/index.js b/utils/flakiness-dashboard/processing/index.js index cb5bd161e7..dc1c500e06 100644 --- a/utils/flakiness-dashboard/processing/index.js +++ b/utils/flakiness-dashboard/processing/index.js @@ -29,7 +29,8 @@ module.exports = async function(context) { // Process dashboards one-by-one to limit max heap utilization. await processDashboardRaw(context, report); - await processDashboardV1(context, report); + // Disable V1 dashboard since it's crazy expensive to compute. + // await processDashboardV1(context, report); // Disable V2 dashboard in favor of raw data. // await processDashboardV2(context, report); }