Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ class AmazonQLanguageClientImpl(private val project: Project) : AmazonQLanguageC
AmazonQLspConstants.LSP_Q_CONFIGURATION_KEY -> {
add(
AmazonQLspConfiguration(
optOutTelemetry = AwsSettings.getInstance().isTelemetryEnabled,
optOutTelemetry = !AwsSettings.getInstance().isTelemetryEnabled,
customization = CodeWhispererModelConfigurator.getInstance().activeCustomization(project)?.arn,
// local context
projectContext = ProjectContextConfiguration(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ class AmazonQLanguageClientImplTest {
.singleElement()
.isEqualTo(
AmazonQLspConfiguration(
optOutTelemetry = telemetryEnabled,
optOutTelemetry = !telemetryEnabled,
customization = customizationArn,
projectContext = ProjectContextConfiguration(
enableLocalIndexing = enableIndexing,
Expand Down
Loading