Add `s` to _cat response parameters

`s` is used for sorting!

Relates to #20658
This commit is contained in:
Nik Everett 2016-10-11 12:29:55 -04:00
parent 10ddcc4616
commit f3b8e7c238
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ public abstract class AbstractCatAction extends BaseRestHandler {
}
static Set<String> RESPONSE_PARAMS =
Collections.unmodifiableSet(new HashSet<>(Arrays.asList("format", "h", "v", "ts", "pri", "bytes", "size", "time")));
Collections.unmodifiableSet(new HashSet<>(Arrays.asList("format", "h", "v", "ts", "pri", "bytes", "size", "time", "s")));
@Override
protected Set<String> responseParams() {