From c35d5473dddf2cf735f0fd36f83a289312a95455 Mon Sep 17 00:00:00 2001 From: Stephen Kitt Date: Thu, 28 Aug 2025 09:22:41 +0200 Subject: [PATCH] Remove the otel semantics override With the bump to otelhttp 0.61, this is no longer necessary. Signed-off-by: Stephen Kitt --- test/integration/apiserver/tracing/tracing_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/integration/apiserver/tracing/tracing_test.go b/test/integration/apiserver/tracing/tracing_test.go index dc7c9192379..5eda6be4279 100644 --- a/test/integration/apiserver/tracing/tracing_test.go +++ b/test/integration/apiserver/tracing/tracing_test.go @@ -324,8 +324,6 @@ endpoint: %s`, listener.Addr().String())), os.FileMode(0755)); err != nil { } func TestAPIServerTracing(t *testing.T) { - // TODO: remove after updating otelhttp to v0.61.0 - t.Setenv("OTEL_SEMCONV_STABILITY_OPT_IN", "http/dup") // Listen for traces from the API Server before starting it, so the // API Server will successfully connect right away during the test. listener, err := net.Listen("tcp", "localhost:")