diff --git a/python/python-lsp-impl/src/com/intellij/python/lsp/impl/PyLspToolAdvertiserService.kt b/python/python-lsp-impl/src/com/intellij/python/lsp/impl/PyLspToolAdvertiserService.kt index a549a11cdd68..6ebce6bc7303 100644 --- a/python/python-lsp-impl/src/com/intellij/python/lsp/impl/PyLspToolAdvertiserService.kt +++ b/python/python-lsp-impl/src/com/intellij/python/lsp/impl/PyLspToolAdvertiserService.kt @@ -192,8 +192,9 @@ class PyLspToolAdvertiserService(private val project: Project, private val cs: C class PyLspToolAdvertiserStartupActivity : ProjectActivity { override suspend fun execute(project: Project) { - thisLogger().debug("PyLspToolAdvertiserStartupActivity: waiting 15s before first check") - delay(15.seconds) - PyLspToolAdvertiserService.getInstance(project).checkAndAdvertise() + return + //thisLogger().debug("PyLspToolAdvertiserStartupActivity: waiting 15s before first check") + //delay(15.seconds) + //PyLspToolAdvertiserService.getInstance(project).checkAndAdvertise() } }