Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
fix(glean): prefix app channel
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfluckey committed Dec 13, 2023
1 parent 182aec7 commit 15b000c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/glean/runtime/glean-plugin.client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default defineNuxtPlugin((nuxtApp) => {
const userAllowGlean = getPreferences(userSettings.value, 'allowGlean')
const uploadEnabled = userAllowGlean

Glean.initialize(GLEAN_APP_ID, uploadEnabled, { channel: env })
Glean.initialize(GLEAN_APP_ID, uploadEnabled, { channel: `elk-${env}` })
userAgent.set(navigator.userAgent)

// Debugging
Expand Down

0 comments on commit 15b000c

Please sign in to comment.