Skip to content

Commit

Permalink
Do not fall back refresh workspace to bloop
Browse files Browse the repository at this point in the history
  • Loading branch information
romanowski committed Feb 2, 2022
1 parent 1d6a588 commit 9886971
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ trait BuildServerForwardStubs extends b.BuildServer {
.handleAsync(fatalExceptionHandler("workspaceBuildTargets"))

override def workspaceReload(): CompletableFuture[Object] =
forwardTo.workspaceReload()
.handleAsync(fatalExceptionHandler("workspaceReload"))
CompletableFuture.completedFuture(new Object)
// Bloop does not support workspaceReload and Intellij calls it at the start
// forwardTo.workspaceReload()
// .handleAsync(fatalExceptionHandler("workspaceReload"))

override def buildTargetDependencyModules(params: DependencyModulesParams)
: CompletableFuture[DependencyModulesResult] =
Expand Down

0 comments on commit 9886971

Please sign in to comment.