You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/AmazonQLanguageClientImpl.kt
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -106,11 +106,13 @@ class AmazonQLanguageClientImpl(private val project: Project) : AmazonQLanguageC
Copy file name to clipboardExpand all lines: plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/AmazonQLspConfiguration.kt
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,10 @@ data class AmazonQLspConfiguration(
Copy file name to clipboardExpand all lines: plugins/amazonq/shared/jetbrains-community/tst/software/aws/toolkits/jetbrains/services/amazonq/lsp/AmazonQLanguageClientImplTest.kt
+30-24Lines changed: 30 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -180,11 +180,13 @@ class AmazonQLanguageClientImplTest {
180
180
AmazonQLspConfiguration(
181
181
optOutTelemetry = telemetryEnabled,
182
182
customization = customizationArn,
183
-
enableLocalIndexing = enableIndexing,
184
-
enableGpuAcceleration = enableGpu,
185
-
indexWorkerThreads = workerThreads,
186
-
localIndexing =LocalIndexingConfiguration(
187
-
maxIndexSizeMB = indexSize,
183
+
projectContext =ProjectContextConfiguration(
184
+
enableLocalIndexing = enableIndexing,
185
+
enableGpuAcceleration = enableGpu,
186
+
indexWorkerThreads = workerThreads,
187
+
localIndexing =LocalIndexingConfiguration(
188
+
maxIndexSizeMB = indexSize,
189
+
)
188
190
)
189
191
)
190
192
)
@@ -196,14 +198,16 @@ class AmazonQLanguageClientImplTest {
196
198
optOutTelemetry =true,
197
199
enableTelemetryEvents =true,
198
200
customization ="arn",
199
-
enableLocalIndexing =true,
200
-
enableGpuAcceleration =true,
201
-
indexWorkerThreads =123,
202
-
localIndexing =LocalIndexingConfiguration(
203
-
maxFileSizeMB =789,
204
-
maxIndexSizeMB =456,
205
-
indexCacheDirPath ="/a/path",
206
-
ignoreFilePatterns =listOf("ignore", "patterns")
201
+
projectContext =ProjectContextConfiguration(
202
+
enableLocalIndexing =true,
203
+
enableGpuAcceleration =true,
204
+
indexWorkerThreads =123,
205
+
localIndexing =LocalIndexingConfiguration(
206
+
maxFileSizeMB =789,
207
+
maxIndexSizeMB =456,
208
+
indexCacheDirPath ="/a/path",
209
+
ignoreFilePatterns =listOf("ignore", "patterns")
210
+
)
207
211
)
208
212
)
209
213
@@ -214,17 +218,19 @@ class AmazonQLanguageClientImplTest {
0 commit comments