Skip to content

Commit 8d6b001

Browse files
peterniedrayshrey
authored andcommitted
Switch to more reliable OpenSearch Lucene snapshot location (opensearch-project#11728)
* Switched to more reliable OpenSearch Lucene snapshot location - Related opensearch-project/opensearch-build#3874 Signed-off-by: Peter Nied <petern@amazon.com> Signed-off-by: Peter Nied <peternied@hotmail.com> * Changelog entry Signed-off-by: Peter Nied <petern@amazon.com> Signed-off-by: Peter Nied <peternied@hotmail.com> --------- Signed-off-by: Peter Nied <petern@amazon.com> Signed-off-by: Peter Nied <peternied@hotmail.com>
1 parent 25a0852 commit 8d6b001

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5757
- Return 409 Conflict HTTP status instead of 503 on failure to concurrently execute snapshots ([#8986](https://github.com/opensearch-project/OpenSearch/pull/5855))
5858
- Add task completion count in search backpressure stats API ([#10028](https://github.com/opensearch-project/OpenSearch/pull/10028/))
5959
- Deprecate CamelCase `PathHierarchy` tokenizer name in favor to lowercase `path_hierarchy` ([#10894](https://github.com/opensearch-project/OpenSearch/pull/10894))
60-
60+
- Switched to more reliable OpenSearch Lucene snapshot location([#11728](https://github.com/opensearch-project/OpenSearch/pull/11728))
6161

6262
### Deprecated
6363

buildSrc/src/main/java/org/opensearch/gradle/RepositoriesSetupPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public static void configureRepositories(Project project) {
9494
String revision = matcher.group(1);
9595
MavenArtifactRepository luceneRepo = repos.maven(repo -> {
9696
repo.setName("lucene-snapshots");
97-
repo.setUrl("https://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/");
97+
repo.setUrl("https://artifacts.opensearch.org/snapshots/lucene/");
9898
});
9999
repos.exclusiveContent(exclusiveRepo -> {
100100
exclusiveRepo.filter(

gradle/code-coverage.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repositories {
1313
gradlePluginPortal()
1414
// TODO: Find the way to use the repositories from RepositoriesSetupPlugin
1515
maven {
16-
url = "https://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/"
16+
url = "https://artifacts.opensearch.org/snapshots/lucene/"
1717
}
1818
}
1919

0 commit comments

Comments
 (0)