Skip to content

Commit

Permalink
fix RestSegmentsAction to pass long not ByteSizeValue
Browse files Browse the repository at this point in the history
Signed-off-by: Nicholas Walter Knize <nknize@apache.org>
  • Loading branch information
nknize committed Feb 1, 2022
1 parent 4bf5a51 commit 693ed1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ private Table buildTable(final RestRequest request, ClusterStateResponse state,
table.addCell(segment.getNumDocs());
table.addCell(segment.getDeletedDocs());
table.addCell(segment.getSize());
table.addCell(segment.getZeroMemory());
table.addCell(0L);
table.addCell(segment.isCommitted());
table.addCell(segment.isSearch());
table.addCell(segment.getVersion());
Expand Down

0 comments on commit 693ed1c

Please sign in to comment.