You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/AmazonQLspService.kt
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -214,11 +214,13 @@ private class AmazonQServerInstance(private val project: Project, private val cs
214
214
} catch (_:TimeoutCancellationException) {
215
215
LOG.warn { "LSP initialization timed out" }
216
216
null
217
+
} catch (e:Exception) {
218
+
LOG.warn(e) { "LSP initialization failed" }
219
+
null
217
220
}
218
221
219
222
// then if this succeeds then we can allow the client to send requests
0 commit comments