Skip to content

Commit

Permalink
[chore][receiver/jmx/internal/subprocess] Enable goleak check (open-t…
Browse files Browse the repository at this point in the history
…elemetry#31773)

This originally was failing in CI/CD, but has passed 10+ times in a row,
I think it's safe to merge.

**Link to tracking Issue:**

open-telemetry#30438
  • Loading branch information
crobert-1 authored and cparkins committed Jul 11, 2024
1 parent f3f73b5 commit b9a9424
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions receiver/jmxreceiver/internal/subprocess/package_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0

package subprocess

import (
"testing"

"go.uber.org/goleak"
)

func TestMain(m *testing.M) {
goleak.VerifyTestMain(m)
}

0 comments on commit b9a9424

Please sign in to comment.