Skip to content

Commit

Permalink
[Backport 2.x] Add isActionPaginated to DelegatingRestHandler (#4765)
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Perkins <[email protected]>
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Jialiang Liang <[email protected]>
  • Loading branch information
3 people authored Oct 8, 2024
1 parent f34d51d commit 19c085c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ public boolean allowSystemIndexAccessByDefault() {
return delegate.allowSystemIndexAccessByDefault();
}

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

@Override
public String toString() {
return delegate.toString();
Expand Down

0 comments on commit 19c085c

Please sign in to comment.