Skip to content

Commit

Permalink
Merge branch 'main' into add_jackson_to_server
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanbogan committed Nov 25, 2022
2 parents 181da45 + f7ba51e commit a814b11
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 10 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -450,12 +450,11 @@ gradle.projectsEvaluated {
}

// test retry configuration
boolean isCiServer = System.getenv().containsKey("CI")
subprojects {
apply plugin: "org.gradle.test-retry"
tasks.withType(Test).configureEach {
retry {
if (isCiServer) {
if (BuildParams.isCi()) {
maxRetries = 3
maxFailures = 10
}
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/version.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ netty = 4.1.84.Final
joda = 2.10.13

# client dependencies
httpclient5 = 5.1.3
httpcore5 = 5.1.4
httpclient5 = 5.1.4
httpcore5 = 5.1.5
httpclient = 4.5.13
httpcore = 4.4.15
httpasyncclient = 4.1.5
Expand Down
1 change: 0 additions & 1 deletion client/rest/licenses/httpclient5-5.1.3.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions client/rest/licenses/httpclient5-5.1.4.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
208f9eed6d6ab709e2ae7a75b457ef60c0baefa5
1 change: 0 additions & 1 deletion client/rest/licenses/httpcore5-5.1.4.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions client/rest/licenses/httpcore5-5.1.5.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
df9da3a1fa2351c4790245400ed28d78a8ddd3fc
1 change: 0 additions & 1 deletion client/rest/licenses/httpcore5-h2-5.1.4.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions client/rest/licenses/httpcore5-h2-5.1.5.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
624660339afd5006d427457e6b10b10b32fd86f1
1 change: 0 additions & 1 deletion client/sniffer/licenses/httpclient5-5.1.3.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions client/sniffer/licenses/httpclient5-5.1.4.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
208f9eed6d6ab709e2ae7a75b457ef60c0baefa5
1 change: 0 additions & 1 deletion client/sniffer/licenses/httpcore5-5.1.4.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions client/sniffer/licenses/httpcore5-5.1.5.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
df9da3a1fa2351c4790245400ed28d78a8ddd3fc
5 changes: 4 additions & 1 deletion server/src/main/java/org/opensearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,10 @@ public class Version implements Comparable<Version>, ToXContentFragment {

// UNRELEASED
public static final Version V_2_4_1 = new Version(2040199, org.apache.lucene.util.Version.LUCENE_9_4_1);
public static final Version V_2_5_0 = new Version(2050099, org.apache.lucene.util.Version.LUCENE_9_4_1);
public static final Version V_2_5_0 = new Version(
2050099,
org.apache.lucene.util.Version.fromBits(9, 4, 2) /** needs updated 9.5.0 snapshots */
);
public static final Version V_3_0_0 = new Version(3000099, org.apache.lucene.util.Version.LUCENE_9_5_0);
public static final Version CURRENT = V_3_0_0;

Expand Down

0 comments on commit a814b11

Please sign in to comment.