Skip to content

Commit 9a8408b

Browse files
committed
Fixed comments in Esql removing new lines
1 parent 2c79983 commit 9a8408b

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/Endpoints/Esql.php

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,7 @@ class Esql extends AbstractEndpoint
3737
* format?: string, // a short version of the Accept header, e.g. json, yaml
3838
* delimiter?: string, // The character to use between values within a CSV row. Only valid for the csv format.
3939
* drop_null_columns?: bool, // Should entirely null columns be removed from the results? Their name and type will be returning in a new `all_columns` section.
40-
* allow_partial_results?: bool, // If `true`, partial results will be returned if there are shard failures, but
41-
* the query can continue to execute on other clusters and shards.
42-
* If `false`, the entire query will fail if there are
43-
* any failures.
40+
* allow_partial_results?: bool, // If `true`, partial results will be returned if there are shard failures, butthe query can continue to execute on other clusters and shards.If `false`, the entire query will fail if there areany failures.
4441
* pretty?: bool, // Pretty format the returned JSON response. (DEFAULT: false)
4542
* human?: bool, // Return human readable values for statistics. (DEFAULT: true)
4643
* error_trace?: bool, // Include the stack trace of returned errors. (DEFAULT: false)
@@ -278,10 +275,7 @@ public function listQueries(?array $params = null)
278275
* format?: string, // a short version of the Accept header, e.g. json, yaml
279276
* delimiter?: string, // The character to use between values within a CSV row. Only valid for the csv format.
280277
* drop_null_columns?: bool, // Should entirely null columns be removed from the results? Their name and type will be returning in a new `all_columns` section.
281-
* allow_partial_results?: bool, // If `true`, partial results will be returned if there are shard failures, but
282-
* the query can continue to execute on other clusters and shards.
283-
* If `false`, the entire query will fail if there are
284-
* any failures.
278+
* allow_partial_results?: bool, // If `true`, partial results will be returned if there are shard failures, butthe query can continue to execute on other clusters and shards.If `false`, the entire query will fail if there areany failures.
285279
* pretty?: bool, // Pretty format the returned JSON response. (DEFAULT: false)
286280
* human?: bool, // Return human readable values for statistics. (DEFAULT: true)
287281
* error_trace?: bool, // Include the stack trace of returned errors. (DEFAULT: false)

0 commit comments

Comments
 (0)