From f4cb710fdc8438846ba51afd3e996da54de32ce2 Mon Sep 17 00:00:00 2001 From: Juan Ramos Date: Thu, 22 Jan 2026 12:53:09 -0500 Subject: [PATCH] chore: remove schema from server_url to avoid confusion --- oauth2/oauth2_auth_code_bench_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth2/oauth2_auth_code_bench_test.go b/oauth2/oauth2_auth_code_bench_test.go index 372f89c0211..62177630b10 100644 --- a/oauth2/oauth2_auth_code_bench_test.go +++ b/oauth2/oauth2_auth_code_bench_test.go @@ -84,7 +84,7 @@ func BenchmarkAuthCode(b *testing.B) { config.KeyLogLevel: "error", config.KeyAccessTokenStrategy: "opaque", config.KeyRefreshTokenHook: "", - "tracing.providers.otlp.server_url": "http://localhost:4318", + "tracing.providers.otlp.server_url": "localhost:4318", "tracing.providers.otlp.insecure": true, })), driver.WithTracerWrapper(func(t *otelx.Tracer) *otelx.Tracer { return new(otelx.Tracer).WithOTLP(tracer) })) oauth2Keys, err := jwk.GenerateJWK(jose.ES256, x.OAuth2JWTKeyName, "sig")