From adfea23d5d1856efe8e2e59c027fd4dca97fb2a9 Mon Sep 17 00:00:00 2001 From: Jared Parsons Date: Wed, 14 Oct 2015 09:41:21 -0700 Subject: [PATCH] Fix Jenkins build issue This change is being tracked by #5962 --- .../Core/Portable/DiagnosticAnalyzer/AnalyzerDriver.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Compilers/Core/Portable/DiagnosticAnalyzer/AnalyzerDriver.cs b/src/Compilers/Core/Portable/DiagnosticAnalyzer/AnalyzerDriver.cs index cb7c0c2faaf..5178c9c8264 100644 --- a/src/Compilers/Core/Portable/DiagnosticAnalyzer/AnalyzerDriver.cs +++ b/src/Compilers/Core/Portable/DiagnosticAnalyzer/AnalyzerDriver.cs @@ -602,7 +602,9 @@ private async Task ProcessCompilationEventsCoreAsync( // When the queue is completed with a pending DequeueAsync return then a // TaskCanceledException will be thrown. This just signals the queue is // complete and we should finish processing it. - Debug.Assert(CompilationEventQueue.IsCompleted, "DequeueAsync should never throw unless the AsyncQueue is completed."); + + // This failure is being tracked by https://github.com/dotnet/roslyn/issues/5962 + // Debug.Assert(CompilationEventQueue.IsCompleted, "DequeueAsync should never throw unless the AsyncQueue is completed."); break; } -- GitLab