Skip to content

Commit e1413a9

Browse files
authored
fix(amazonq): Fix LSP start failure in al2023 arm64 (aws#6488)
## Problem The LSP cannot start in AL2023 arm64. ## Solution Update the binary of linux arm64 to make it compatible with both AL2023 and Ubuntu arm64 --- - Treat all work as PUBLIC. Private `feature/x` branches will not be squash-merged at release time. - Your code changes must meet the guidelines in [CONTRIBUTING.md](https://github.com/aws/aws-toolkit-vscode/blob/master/CONTRIBUTING.md#guidelines). - License: I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 8533cf8 commit e1413a9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type": "Bug Fix",
3+
"description": "Fix language server start failure in AL2023 ARM64"
4+
}

packages/core/src/amazonq/lsp/lspController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export interface Manifest {
5858
}
5959
const manifestUrl = 'https://aws-toolkit-language-servers.amazonaws.com/q-context/manifest.json'
6060
// this LSP client in Q extension is only going to work with these LSP server versions
61-
const supportedLspServerVersions = ['0.1.32']
61+
const supportedLspServerVersions = ['0.1.35']
6262

6363
const nodeBinName = process.platform === 'win32' ? 'node.exe' : 'node'
6464

0 commit comments

Comments
 (0)