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.
This commit is contained in:
Andrey Lushnikov 2021-01-14 21:43:42 +03:00 committed by GitHub
parent 38dac2f35a
commit 3ed9f2d63e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}