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
fix(amazonq): fix chat input not responding correctly after reauth (#5805)
* sync q dev profile with reauth
* fix initial quick actions
* use slice
* only check feature flags when chat is ready
* remove comments
* update groups only
* clean up script
* refactor
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/Browser.kt
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -139,7 +139,6 @@ class Browser(parent: Disposable, private val webUri: URI, val project: Project)
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/BrowserConnector.kt
Copy file name to clipboardExpand all lines: plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/auth/DefaultAuthCredentialsService.kt
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -111,9 +111,14 @@ class DefaultAuthCredentialsService(
111
111
returnCompletableFuture.failedFuture(e)
112
112
}
113
113
114
-
returnAmazonQLspService.executeIfRunning(project) { server ->
114
+
val future =AmazonQLspService.executeIfRunning(project) { server ->
115
115
server.updateTokenCredentials(payload)
116
-
} ?: (CompletableFuture.failedFuture(IllegalStateException("LSP Server not running")))
116
+
} ?:CompletableFuture.failedFuture(IllegalStateException("LSP Server not running"))
0 commit comments