Disable IR caching (again)

In light of more problems that IR caching revealed it makes sense to
have a stable but slower platform.
This commit is contained in:
Hubert Plociniczak 2024-09-10 08:08:37 +02:00
parent 2adb8bb86d
commit 9d997ba1d0

View File

@ -324,7 +324,7 @@ class MainModule(serverConfig: LanguageServerConfig, logLevel: Level) {
.logLevel(logLevel)
.strictErrors(false)
.disableLinting(false)
.enableIrCaches(true)
.enableIrCaches(false) // Enable once #11022 is addressed
.out(stdOut)
.err(stdErr)
.in(stdIn)