Skip to content

Commit

Permalink
Update 2.x to 2.15.0 (#1055)
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Zhu <[email protected]>
Signed-off-by: Subhobrata Dey <[email protected]>
  • Loading branch information
peterzhuamazon authored Jun 6, 2024
1 parent f085de6 commit 39846b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import org.opensearch.gradle.test.RestIntegTestTask

buildscript {
ext {
opensearch_version = System.getProperty("opensearch.version", "2.14.0-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "2.15.0-SNAPSHOT")
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
buildVersionQualifier = System.getProperty("build.version_qualifier", "")
version_tokens = opensearch_version.tokenize('-')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ public void getAlertsByMonitorIds(
alertIndex,
monitorIds,
null,
null,
null
);

Expand Down Expand Up @@ -255,7 +256,8 @@ public void getAlerts(List<String> alertIds,
DetectorMonitorConfig.getAllAlertsIndicesPattern(detector.getDetectorType()),
null,
null,
alertIds);
alertIds,
null);
AlertingPluginInterface.INSTANCE.getAlerts(
(NodeClient) client,
request, actionListener);
Expand Down

0 comments on commit 39846b1

Please sign in to comment.