Skip to content

Commit 56b5726

Browse files
Fix failing CI's (#17186)
Signed-off-by: Prudhvi Godithi <pgodithi@amazon.com>
1 parent 28e3fe1 commit 56b5726

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
116116
- Fix GRPC AUX_TRANSPORT_PORT and SETTING_GRPC_PORT settings and remove lingering HTTP terminology ([#17037](https://github.com/opensearch-project/OpenSearch/pull/17037))
117117
- [WLM] Fix the QueryGroupTask logging bug ([#17169](https://github.com/opensearch-project/OpenSearch/pull/17169))
118118
- Use OpenSearch version to deserialize remote custom metadata([#16494](https://github.com/opensearch-project/OpenSearch/pull/16494))
119-
119+
- Fix the failing CI's with `Failed to load eclipse jdt formatter` error ([#17172](https://github.com/opensearch-project/OpenSearch/pull/17172))
120120
### Security
121121

122122
[Unreleased 2.x]: https://github.com/opensearch-project/OpenSearch/compare/2.18...2.x

gradle/formatting.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ allprojects {
8282
'\\#java|\\#org.opensearch|\\#org.hamcrest|\\#'
8383
)
8484

85-
eclipse().configFile rootProject.file('buildSrc/formatterConfig.xml')
85+
eclipse().withP2Mirrors(Map.of("https://download.eclipse.org/", "https://mirror.umd.edu/eclipse/")).configFile rootProject.file('buildSrc/formatterConfig.xml')
8686
trimTrailingWhitespace()
8787
endWithNewline()
8888

@@ -92,7 +92,7 @@ allprojects {
9292
throw new AssertionError("Do not use wildcard imports. 'spotlessApply' cannot resolve this issue.")
9393
}
9494
}
95-
95+
9696
// See DEVELOPER_GUIDE.md for details of when to enable this.
9797
if (System.getProperty('spotless.paddedcell') != null) {
9898
paddedCell()

0 commit comments

Comments
 (0)