Skip to content

Commit e191ac8

Browse files
committed
address comments
1 parent d7778d4 commit e191ac8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/AmazonQLspService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ class AmazonQLspService(private val project: Project, private val cs: CoroutineS
167167
// Initialize heartbeat job
168168
heartbeatJob = cs.launch {
169169
while (isActive) {
170-
delay(5.seconds) // Check every 2 seconds
170+
delay(5.seconds) // Check every 5 seconds
171171
checkConnectionStatus()
172172
}
173173
}

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/artifacts/ManifestFetcher.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class ManifestFetcher(
2929
private val logger = getLogger<ManifestFetcher>()
3030

3131
private const val DEFAULT_MANIFEST_URL =
32-
"https://d3akiidp1wvqyg.cloudfront.net/qAgenticChatServer/0/manifest.json"
32+
"https://aws-toolkit-language-servers.amazonaws.com/qAgenticChatServer/0/manifest.json"
3333

3434
private val DEFAULT_MANIFEST_PATH: Path = getToolkitsCommonCacheRoot()
3535
.resolve("aws")

0 commit comments

Comments
 (0)