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

Commit

Permalink
No issue: Attempts to fix installation ping not being sent
Browse files Browse the repository at this point in the history
  • Loading branch information
sblatz committed Mar 19, 2020
1 parent 8d2e594 commit 9aac777
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 9aac777

Please sign in to comment.