Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 67499f7

Browse files
authored
Merge pull request #507 from grafana/fix/pprof-envvar
Fix XK6_BROWSER_PPROF env var for cloud support
2 parents 9b08fdb + f545516 commit 67499f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var (
4343
)
4444

4545
func init() {
46-
if _, ok := os.LookupEnv("XK6_BROWSER_PPROF"); ok {
46+
if _, ok := os.LookupEnv("K6_BROWSER_PPROF"); ok {
4747
go func() {
4848
address := "localhost:6060"
4949
log.Println("Starting http debug server", address)

0 commit comments

Comments
 (0)