Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@
"type": "boolean",
"description": "Return settings in flat format (default: false)"
},
"human": {
"type": "boolean",
"description": "Whether to return time and byte values in human-readable format.",
"default": false
},
"timeout": {
"type" : "time",
"description" : "Explicit operation timeout"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,6 @@
"type": "boolean",
"description": "Return settings in flat format (default: false)"
},
"human": {
"type": "boolean",
"description": "Whether to return version and creation date values in human-readable format.",
"default": false
},
"include_defaults": {
"type": "boolean",
"description": "Whether to return all default setting for each of the indices.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@
"type": "boolean",
"description": "Return local information, do not retrieve the state from master node (default: false)"
},
"human": {
"type": "boolean",
"description": "Whether to return version and creation date values in human-readable format.",
"default": false
},
"include_defaults": {
"type": "boolean",
"description": "Whether to return all default setting for each of the indices.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@
"options" : ["open","closed","none","all"],
"default" : "open",
"description" : "Whether to expand wildcard expression to concrete indices that are open, closed or both."
},
"human": {
"type": "boolean",
"description": "Whether to return time and byte values in human-readable format.",
"default": false
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@
"type": "boolean",
"description": "Display only those recoveries that are currently on-going",
"default": false
},
"human": {
"type": "boolean",
"description": "Whether to return time and byte values in human-readable format.",
"default": false
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@
"default" : "open",
"description" : "Whether to expand wildcard expression to concrete indices that are open, closed or both."
},
"human": {
"type": "boolean",
"description": "Whether to return time and byte values in human-readable format.",
"default": false
},
"operation_threading": {
"description" : "TODO: ?"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@
"type" : "list",
"description" : "A comma-separated list of search groups for `search` index metric"
},
"human": {
"type": "boolean",
"description": "Whether to return time and byte values in human-readable format.",
"default": false
},
"level": {
"type" : "enum",
"description": "Return stats aggregated at cluster, index or shard level",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@
"type": "boolean",
"description": "Return settings in flat format (default: false)"
},
"human": {
"type": "boolean",
"description": "Whether to return time and byte values in human-readable format.",
"default": false
},
"timeout": {
"type" : "time",
"description" : "Explicit operation timeout"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,6 @@
"type" : "boolean",
"description" : "A comma-separated list of search groups for `search` index metric"
},
"human": {
"type": "boolean",
"description": "Whether to return time and byte values in human-readable format.",
"default": false
},
"level": {
"type" : "enum",
"description": "Return indices stats aggregated at index, node or shard level",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class ClientYamlTestClient {
* Query params that don't need to be declared in the spec, they are supported by default.
*/
private static final Set<String> ALWAYS_ACCEPTED_QUERY_STRING_PARAMS = Sets.newHashSet(
"error_trace", "filter_path", "pretty", "source");
"error_trace", "filter_path", "human", "pretty", "source");

private final ClientYamlSuiteRestSpec restSpec;
private final RestClient restClient;
Expand Down