Skip to content

Commit 16d457d

Browse files
authored
Switch to more reliable OpenSearch Lucene snapshot location (#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 8440468 commit 16d457d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

+1-1
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

+1-1
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

+1-1
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)