Skip to content

Commit

Permalink
Fix: update help output for _cat (#14722)
Browse files Browse the repository at this point in the history
* fixed help output for _cat

Signed-off-by: ahmedsobeh <ahmed.sobeh@aiven.io>

* updated changelog

Signed-off-by: ahmedsobeh <ahmed.sobeh@aiven.io>

* updated changelog

Signed-off-by: ahmedsobeh <ahmed.sobeh@aiven.io>

---------

Signed-off-by: ahmedsobeh <ahmed.sobeh@aiven.io>
(cherry picked from commit 17b7996)
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
  • Loading branch information
ahmedsobeh authored and reta committed Jul 11, 2024
1 parent 3f11029 commit cffadba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
### Deprecated
### Removed
### Fixed
- Update help output for _cat ([#14722](https://github.com/opensearch-project/OpenSearch/pull/14722))

### Security

[Unreleased]: https://github.com/opensearch-project/OpenSearch/compare/1.3.15...HEAD
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ protected Table getTableWithHeader(final RestRequest request) {
table.addCell("port", "default:false;alias:po;desc:bound transport port");
table.addCell("http_address", "default:false;alias:http;desc:bound http address");

table.addCell("version", "default:false;alias:v;desc:es version");
table.addCell("type", "default:false;alias:t;desc:es distribution type");
table.addCell("build", "default:false;alias:b;desc:es build hash");
table.addCell("version", "default:false;alias:v;desc:os version");
table.addCell("type", "default:false;alias:t;desc:os distribution type");
table.addCell("build", "default:false;alias:b;desc:os build hash");
table.addCell("jdk", "default:false;alias:j;desc:jdk version");
table.addCell("disk.total", "default:false;alias:dt,diskTotal;text-align:right;desc:total disk space");
table.addCell("disk.used", "default:false;alias:du,diskUsed;text-align:right;desc:used disk space");
Expand Down

0 comments on commit cffadba

Please sign in to comment.