From b091af1899b66a516d753109ce6bf8182be416e0 Mon Sep 17 00:00:00 2001 From: Vishwesh Bankwar Date: Fri, 13 Oct 2023 09:36:29 -0700 Subject: [PATCH] [ASP.NET Core] Disable Flaky test (#4947) --- .../BasicTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/OpenTelemetry.Instrumentation.AspNetCore.Tests/BasicTests.cs b/test/OpenTelemetry.Instrumentation.AspNetCore.Tests/BasicTests.cs index 184422e953e..87a70d3bfbd 100644 --- a/test/OpenTelemetry.Instrumentation.AspNetCore.Tests/BasicTests.cs +++ b/test/OpenTelemetry.Instrumentation.AspNetCore.Tests/BasicTests.cs @@ -912,7 +912,7 @@ void ConfigureTestServices(IServiceCollection services) Assert.Equal(4, numberofSubscribedEvents); } - [Fact] + [Fact(Skip = "https://github.com/open-telemetry/opentelemetry-dotnet/issues/4884")] public async Task DiagnosticSourceExceptionCallBackIsNotReceivedForExceptionsHandledInMiddleware() { int numberOfUnSubscribedEvents = 0;