Skip to content

Commit 28e4755

Browse files
committed
modify changelog
Signed-off-by: Ruirui Zhang <mariazrr@amazon.com>
1 parent aa293e9 commit 28e4755

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1010
- Apply the date histogram rewrite optimization to range aggregation ([#13865](https://github.com/opensearch-project/OpenSearch/pull/13865))
1111
- [Writable Warm] Add composite directory implementation and integrate it with FileCache ([12782](https://github.com/opensearch-project/OpenSearch/pull/12782))
1212
- [Workload Management] Add QueryGroup schema ([13669](https://github.com/opensearch-project/OpenSearch/pull/13669))
13+
- [Workload Management] Add Delete QueryGroup API Logic ([#14735](https://github.com/opensearch-project/OpenSearch/pull/14735))
1314
- Add batching supported processor base type AbstractBatchingProcessor ([#14554](https://github.com/opensearch-project/OpenSearch/pull/14554))
1415
- Fix race condition while parsing derived fields from search definition ([14445](https://github.com/opensearch-project/OpenSearch/pull/14445))
1516
- Add allowlist setting for ingest-common and search-pipeline-common processors ([#14439](https://github.com/opensearch-project/OpenSearch/issues/14439))

plugins/workload-management/src/test/java/org/opensearch/plugin/wlm/action/DeleteQueryGroupResponseTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public void testToXContentDeleteMultipleQueryGroup() throws IOException {
126126
assertEquals(expected, actual);
127127
}
128128

129-
public void testToXContentZeroSingleQueryGroup() throws IOException {
129+
public void testToXContentDeleteZeroQueryGroup() throws IOException {
130130
XContentBuilder builder = JsonXContent.contentBuilder().prettyPrint();
131131
DeleteQueryGroupResponse otherResponse = new DeleteQueryGroupResponse(new ArrayList<>(), RestStatus.OK);
132132
String actual = otherResponse.toXContent(builder, mock(ToXContent.Params.class)).toString();

0 commit comments

Comments
 (0)