Skip to content

Commit

Permalink
Merge pull request #2339 from jchyb/fix-deduplicating-reporting
Browse files Browse the repository at this point in the history
Fix reporting after deduplicating compilations
  • Loading branch information
tgodzik committed May 24, 2024
2 parents be00748 + 369c498 commit 8028ffb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,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 @@ -207,7 +207,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 8028ffb

Please sign in to comment.