Skip to content

Commit 0fcd624

Browse files
authored
fix(amazonq): switch off the feature flag incase sagemaker is involved (#7777)
## Problem Sagemaker was showing show logs feature when it cant support it. ## Solution Added the check for sage maker. --- - 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 f724fe9 commit 0fcd624

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/amazonq/src/lsp/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ export async function startLanguageServer(
184184
window: {
185185
notifications: true,
186186
showSaveFileDialog: true,
187-
showLogs: true,
187+
showLogs: isSageMaker() ? false : true,
188188
},
189189
textDocument: {
190190
inlineCompletionWithReferences: textDocSection,

0 commit comments

Comments
 (0)