Bug 1369028 - Disable the extra telemetry reporting from follow-on search until the perf issues are fixed. r=past

MozReview-Commit-ID: 4N7kMeGii1q
This commit is contained in:
Mark Banner 2017-06-08 09:45:54 +01:00
Родитель 83f7b413cc
Коммит de46d6cd6c
1 изменённых файлов: 8 добавлений и 6 удалений

Просмотреть файл

@ -167,12 +167,14 @@ var cohortManager = {
}
}
if (cohortSample <= REPORTING_THRESHOLD[updateChannel]) {
log("Enabling telemetry for user");
this.enableForUser = true;
} else {
log("Not enabling telemetry for user - outside threshold.");
}
log("Not enabling extra telemetry due to bug 1371198");
// if (cohortSample <= REPORTING_THRESHOLD[updateChannel]) {
// log("Enabling telemetry for user");
// this.enableForUser = true;
// } else {
// log("Not enabling telemetry for user - outside threshold.");
// }
},
};