Skip to content

Commit 8a90cd5

Browse files
authored
feat: history v2 (#6046)
1 parent 124226f commit 8a90cd5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/amazonq/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ tasks.check {
6060
}
6161

6262
val downloadFlareManifest by tasks.registering(Download::class) {
63-
src("https://aws-toolkit-language-servers.amazonaws.com/qAgenticChatServer/0/manifest.json")
63+
src("https://github.com/aws/language-servers/releases/download/agentic-pre-historyV2/manifest.json")
6464
dest(layout.buildDirectory.file("flare/manifest.json"))
6565
onlyIfModified(true)
6666
useETag(true)

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
@@ -28,7 +28,7 @@ class ManifestFetcher {
2828

2929
private fun getManifestEndpoint(): String {
3030
val endpoint = Registry.get("amazon.q.flare.endpoint").asString()
31-
return endpoint.ifBlank { "https://aws-toolkit-language-servers.amazonaws.com/qAgenticChatServer/0/manifest.json" }
31+
return endpoint.ifBlank { "https://github.com/aws/language-servers/releases/download/agentic-pre-historyV2/manifest.json" }
3232
}
3333

3434
private val DEFAULT_MANIFEST_PATH: Path = getToolkitsCommonCacheRoot()

0 commit comments

Comments
 (0)