Bug 1855604 - Back out putting provenance attribution in installation.first_seen r=nalexander

Backs out Bug 1821189's patch: https://hg.mozilla.org/mozilla-central/rev/c4f8098f81bb

Differential Revision: https://phabricator.services.mozilla.com/D189591
This commit is contained in:
Robin Steuber
2023-10-03 23:40:24 +00:00
parent 9bbff3983b
commit e194d9f28b
5 changed files with 14 additions and 164 deletions

View File

@@ -1283,9 +1283,8 @@ export let BrowserUsageTelemetry = {
return;
}
let provenanceExtra = {};
try {
provenanceExtra = await lazy.ProvenanceData.submitProvenanceTelemetry();
await lazy.ProvenanceData.submitProvenanceTelemetry();
} catch (ex) {
console.warn(
"reportInstallationTelemetry - submitProvenanceTelemetry failed",
@@ -1422,13 +1421,6 @@ export let BrowserUsageTelemetry = {
null,
extra
);
Services.telemetry.recordEvent(
"installation",
"first_seen_prov_ext",
installer_type,
null,
provenanceExtra
);
},
};