Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/core/src/shared/lsp/utils/platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export function createServerOptions({
}) {
return async () => {
const bin = executable[0]
const args = [...executable.slice(1), serverModule, ...execArgv]
const args = [...executable.slice(1), '--max-old-space-size=8196', serverModule, ...execArgv]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please test this in AL2.

Copy link
Contributor Author

@yueny2020 yueny2020 Jun 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i asked the one user tested a local build. His Operating System is Amazon Linux 2 x86_64 5.10 Kernel (Cloud Desktop)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes you can also test it using your own AL2 instances

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i also test it using my own dev desktop.

if (isDebugInstance()) {
args.unshift('--inspect=6080')
}
Expand Down
Loading