Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
fcf6bb2
Add autotagging rule integration tests
Jun 18, 2025
e7f9e6b
updated changelog
Jun 18, 2025
08ef80b
revised based on comments
Jun 21, 2025
37d2ec2
removed mocks
Jun 21, 2025
274cd45
fixed setup issue
Jun 25, 2025
9f4dcda
deleted unecessary changes
Jun 25, 2025
fceb87a
deleted blank line
Jun 25, 2025
17a3568
trying to fix Unknown feature type
Jun 27, 2025
f331044
fix unknown feature error
Jun 30, 2025
650ea46
delete print statement
Jun 30, 2025
681f406
added verifying whether the query has been tagged with the group ID
Jul 1, 2025
69ef875
revert unnecessay changes
Jul 1, 2025
f09deac
fixed changelog
Jul 1, 2025
b3d4145
created more helper func
Jul 1, 2025
d65eaad
changed test names
Jul 2, 2025
c2189e9
updated asser msg
Jul 3, 2025
e3bf6ee
Merge branch 'main' into rule_IT
Lindsay-00 Jul 3, 2025
92e1eec
updated changelog
Jul 3, 2025
36039d6
debugging gradle check fail
Jul 3, 2025
35d56b5
fixed gradle fail
Jul 3, 2025
f51b4de
fixed precommit error
Jul 3, 2025
4283a2a
Merge branch 'main' into rule_IT
Lindsay-00 Jul 7, 2025
0c94730
added more tests
Jul 16, 2025
1d8fbc6
Merge branch 'opensearch-project:main' into rule_IT
Lindsay-00 Jul 16, 2025
d65cba5
fix precommit error
Jul 16, 2025
aac896a
added max rules setting
Jul 16, 2025
76bdbc4
fix error for DeleteRuleForNonexistentId
Jul 16, 2025
0ad5c25
fix precommit
Jul 16, 2025
0773193
Merge branch 'main' into rule_IT
Lindsay-00 Sep 17, 2025
f508d46
fixed failed testRuleWithNonexistentWorkloadGroupId
Sep 17, 2025
b46987f
fix precommit error
Sep 17, 2025
5f5ee47
triggering tests
Sep 17, 2025
fbed93b
Merge branch 'opensearch-project:main' into rule_IT
Lindsay-00 Sep 18, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Add last index request timestamp columns to the `_cat/indices` API. ([10766](https://github.com/opensearch-project/OpenSearch/issues/10766))
- Introduce a new pull-based ingestion plugin for file-based indexing (for local testing) ([#18591](https://github.com/opensearch-project/OpenSearch/pull/18591))
- Add support for search pipeline in search and msearch template ([#18564](https://github.com/opensearch-project/OpenSearch/pull/18564))
- [Rule based auto-tagging] Add Rule based auto-tagging IT ([#18550](https://github.com/opensearch-project/OpenSearch/pull/18550))

### Changed
- Update Subject interface to use CheckedRunnable ([#18570](https://github.com/opensearch-project/OpenSearch/issues/18570))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public XContentBuilder toXContent(XContentBuilder builder, Params params) throws
/**
* rule getter
*/
Rule getRule() {
public Rule getRule() {
return rule;
}
}
Loading