Skip to content

Commit

Permalink
Fix issue with disappearing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jchyb committed May 23, 2024
1 parent d691ee1 commit f188cc5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ object CompileGraph {
case a: ReporterAction.ProcessEndCompilation =>
a.code match {
case BspStatusCode.Cancelled | BspStatusCode.Error =>
reporter.processEndCompilation(previousSuccessfulProblems, a.code, None, None)
reporter.processEndCompilation(previousProblems, a.code, None, None)
reporter.reportEndCompilation()
case _ =>
/*
Expand All @@ -193,7 +193,7 @@ object CompileGraph {
* can use `taskFinish` notifications as a signal to process them.
*/
reporter.processEndCompilation(
previousSuccessfulProblems,
previousProblems,
a.code,
Some(clientClassesObserver.classesDir),
Some(bundle.out.analysisOut)
Expand Down

0 comments on commit f188cc5

Please sign in to comment.