Skip to content

Commit

Permalink
[Release 3.0] Bump main branch to use revision 3.0.0.0-alpha1 (#61)
Browse files Browse the repository at this point in the history
* Bump main branch to use revision 3.0.0-alpha1

Signed-off-by: Peter Zhu <[email protected]>

* Update 3.0

Signed-off-by: Peter Zhu <[email protected]>

---------

Signed-off-by: Peter Zhu <[email protected]>
  • Loading branch information
peterzhuamazon authored Jan 30, 2025
1 parent ddb4e2b commit 4ff695f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import org.opensearch.gradle.VersionProperties
buildscript {
ext {
opensearch_group = "org.opensearch"
opensearch_version = System.getProperty("opensearch.version", "3.0.0-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "3.0.0-alpha1-SNAPSHOT")
is_snapshot = "true" == System.getProperty("build.snapshot", "true")
build_version_qualifier = System.getProperty("build.version_qualifier", "")
build_version_qualifier = System.getProperty("build.version_qualifier", "alpha1")

version_tokens = opensearch_version.tokenize('-')
opensearch_build = version_tokens[0] + '.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ public void testSearchDataObjectNotTenantAware() throws IOException {
assertEquals(0, searchActionResponse.getSkippedShards());
assertEquals(1, searchActionResponse.getSuccessfulShards());
assertEquals(1, searchActionResponse.getTotalShards());
assertEquals(0, searchActionResponse.getHits().getTotalHits().value);
assertEquals(0, searchActionResponse.getHits().getTotalHits().value());
}

@Test
Expand Down Expand Up @@ -758,7 +758,7 @@ public void testSearchDataObjectTenantAware() throws IOException {
assertEquals(0, searchActionResponse.getSkippedShards());
assertEquals(1, searchActionResponse.getSuccessfulShards());
assertEquals(1, searchActionResponse.getTotalShards());
assertEquals(0, searchActionResponse.getHits().getTotalHits().value);
assertEquals(0, searchActionResponse.getHits().getTotalHits().value());
}

@Test
Expand Down

0 comments on commit 4ff695f

Please sign in to comment.