Skip to content

Commit

Permalink
bugfix: Start http server earlier
Browse files Browse the repository at this point in the history
Previously, it would be accessed by the doctor before ready. Now, it will not print a flaky warning about http being disabled.
  • Loading branch information
tgodzik committed Jan 3, 2025
1 parent 843d80f commit 10afb79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1263,8 +1263,8 @@ class WorkspaceLspService(
workDoneProgress.start(sh, 0, 1, ju.concurrent.TimeUnit.SECONDS)
for {
_ <- userConfigSync.initSyncUserConfiguration(folderServices)
_ <- Future.sequence(folderServices.map(_.initialized()))
_ <- Future(startHttpServer())
_ <- Future.sequence(folderServices.map(_.initialized()))
} yield ()
}

Expand Down

0 comments on commit 10afb79

Please sign in to comment.