Skip to content

Commit 3ed9f2d

Browse files
authored
chore: disable v1 flakiness dashboard (#5015)
Computing V1 flakiness dashboard was very expensive (>1 minute for AZ function to run). Disable it now in favor of V2 flakiness dashboard that proves to be very reliable.
1 parent 38dac2f commit 3ed9f2d

File tree

1 file changed

+2
-1
lines changed
  • utils/flakiness-dashboard/processing

1 file changed

+2
-1
lines changed

utils/flakiness-dashboard/processing/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ module.exports = async function(context) {
2929

3030
// Process dashboards one-by-one to limit max heap utilization.
3131
await processDashboardRaw(context, report);
32-
await processDashboardV1(context, report);
32+
// Disable V1 dashboard since it's crazy expensive to compute.
33+
// await processDashboardV1(context, report);
3334
// Disable V2 dashboard in favor of raw data.
3435
// await processDashboardV2(context, report);
3536
}

0 commit comments

Comments
 (0)