Minor fix of _cat output (#23211) (#23213)

One line was missing a trailing "\n"
This commit is contained in:
Yuhao Bi 2017-02-17 17:46:20 +08:00 committed by Clinton Gormley
parent 37f7a70e22
commit 576e698613
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public class RestThreadPoolAction extends AbstractCatAction {
@Override @Override
protected void documentation(StringBuilder sb) { protected void documentation(StringBuilder sb) {
sb.append("/_cat/thread_pool\n"); sb.append("/_cat/thread_pool\n");
sb.append("/_cat/thread_pool/{thread_pools}"); sb.append("/_cat/thread_pool/{thread_pools}\n");
} }
@Override @Override