Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

No issue: Attempts to fix installation ping not being sent #9254

Merged
merged 1 commit into from Mar 19, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -508,6 +508,7 @@ class GleanMetricsService(private val context: Context) : MetricsService {
private var initialized = false

private val activationPing = ActivationPing(context)
private val installationPing = InstallationPing(context)

override fun start() {
logger.debug("Enabling Glean.")
Expand Down Expand Up @@ -567,7 +568,7 @@ class GleanMetricsService(private val context: Context) : MetricsService {
}

activationPing.checkAndSend()
InstallationPing(context).checkAndSend()
installationPing.checkAndSend()
}

override fun stop() {
Expand Down