-
Notifications
You must be signed in to change notification settings - Fork 747
fix(amazonq): disable SageMakerUnifiedStudio for show logs #7747
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
2cdf8cd to
5d7eb35
Compare
packages/amazonq/package.json
Outdated
| { | ||
| "command": "aws.amazonq.showLogs", | ||
| "when": "view == aws.amazonq.AmazonQChatView", | ||
| "when": "view == aws.amazonq.AmazonQChatView && !aws.isSageMakerUnifiedStudio", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"when": "view == aws.amazonq.AmazonQChatView && !aws.isSageMakerUnifiedStudio && aws.codewhisperer.connected"
packages/amazonq/package.json
Outdated
| "title": "%AWS.command.codewhisperer.showLogs%", | ||
| "category": "%AWS.amazonq.title%", | ||
| "enablement": "aws.codewhisperer.connected" | ||
| "enablement": "aws.codewhisperer.connected && !aws.isSageMakerUnifiedStudio" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't need this If we apply above suggestion.
57ed101
5d7eb35 to
57ed101
Compare
| { | ||
| "command": "aws.amazonq.showLogs", | ||
| "when": "view == aws.amazonq.AmazonQChatView", | ||
| "when": "!aws.isSageMakerUnifiedStudio", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit:
view == aws.amazonq.AmazonQChatView
This can stay! as we dont want to show this for other view may be for code issues!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having this doesn't show the log on login window. I tested that configuration also.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see
Problem
Added another code setting for show logs.
Solution
Added another code setting for show logs.
feature/xbranches will not be squash-merged at release time.