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
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -193,7 +193,7 @@ class AmazonQLspService(private val project: Project, private val cs: CoroutineS
193
193
194
194
// Check if the launcher's Future (startListening) is done
195
195
// If it's done, that means the connection has been terminated
196
-
if (currentInstance.launcherFuture.isDone||true) {
196
+
if (currentInstance.launcherFuture.isDone) {
197
197
LOG.debug { "LSP server connection terminated, checking restart limits" }
198
198
val canRestart = checkForRemainingRestartAttempts()
0 commit comments