Skip to content

Commit 40ac831

Browse files
Fixing build
Signed-off-by: Bharathwaj G <[email protected]>
1 parent 7796ace commit 40ac831

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44
## [Unreleased]
55
### Added
66
- Github workflow for changelog verification ([#4085](https://github.com/opensearch-project/OpenSearch/pull/4085))
7+
- Point in time rest layer changes for create and delete PIT API ([#4064](https://github.com/opensearch-project/OpenSearch/pull/4064))
78

89
### Changed
910
- Dependency updates (httpcore, mockito, slf4j, httpasyncclient, commons-codec) ([#4308](https://github.com/opensearch-project/OpenSearch/pull/4308))

server/src/main/java/org/opensearch/action/search/GetAllPitNodesRequest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
*/
2222
public class GetAllPitNodesRequest extends BaseNodesRequest<GetAllPitNodesRequest> {
2323

24+
// Security plugin intercepts and sets the response with permitted PIT contexts
2425
private GetAllPitNodesResponse getAllPitNodesResponse;
2526

2627
@Inject

server/src/main/java/org/opensearch/action/search/TransportGetAllPitsAction.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
import org.opensearch.tasks.Task;
1616
import org.opensearch.transport.TransportService;
1717

18+
/**
19+
* Transport action to get all active PIT contexts across the cluster
20+
*/
1821
public class TransportGetAllPitsAction extends HandledTransportAction<GetAllPitNodesRequest, GetAllPitNodesResponse> {
1922
private final PitService pitService;
2023

0 commit comments

Comments
 (0)