Skip to content

Commit

Permalink
Fixing testRestHandlerWrapper UT
Browse files Browse the repository at this point in the history
Signed-off-by: Harsh Garg <gkharsh@amazon.com>
  • Loading branch information
Harsh Garg committed Oct 7, 2024
1 parent cf59dc5 commit 0afdd98
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions server/src/main/java/org/opensearch/rest/RestHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,11 @@ public boolean allowSystemIndexAccessByDefault() {
return delegate.allowSystemIndexAccessByDefault();
}

@Override
public boolean isActionPaginated() {
return delegate.isActionPaginated();
}

@Override
public boolean supportsStreaming() {
return delegate.supportsStreaming();
Expand Down

0 comments on commit 0afdd98

Please sign in to comment.