Skip to content

Commit a26db33

Browse files
Fix: update help output for _cat (#14722) (#14726)
* fixed help output for _cat * updated changelog * updated changelog --------- (cherry picked from commit 17b7996) Signed-off-by: ahmedsobeh <[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>
1 parent 6f3f68d commit a26db33

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6464
- Handle NPE in GetResult if "found" field is missing ([#14552](https://github.com/opensearch-project/OpenSearch/pull/14552))
6565
- Refactoring FilterPath.parse by using an iterative approach ([#14200](https://github.com/opensearch-project/OpenSearch/pull/14200))
6666
- Refactoring Grok.validatePatternBank by using an iterative approach ([#14206](https://github.com/opensearch-project/OpenSearch/pull/14206))
67+
- Update help output for _cat ([#14722](https://github.com/opensearch-project/OpenSearch/pull/14722))
6768

6869
### Security
6970

server/src/main/java/org/opensearch/rest/action/cat/RestNodesAction.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@ protected Table getTableWithHeader(final RestRequest request) {
171171
table.addCell("port", "default:false;alias:po;desc:bound transport port");
172172
table.addCell("http_address", "default:false;alias:http;desc:bound http address");
173173

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

0 commit comments

Comments
 (0)