We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c92b86 commit 4871682Copy full SHA for 4871682
cmd/otelcol/main_test.go
@@ -13,6 +13,12 @@
13
// See the License for the specific language governing permissions and
14
// limitations under the License.
15
16
+// This test is flaky w/ data race validation enabled. The issue is that monitors do not guarantee
17
+// that no more data is going to be sent after shutdown is called. This can cause data races with
18
+// processors and exporters that have been shut down. See https://github.com/signalfx/splunk-otel-collector/pull/7265.
19
+// The build directive below should be removed once the monitors are not supported anymore.
20
+//go:build !race
21
+
22
package main
23
24
import (
0 commit comments