Skip to content

Commit 3e35b1c

Browse files
[8.19] Remove unsupported master_timeout from cat.aliases API (#5007) (#5008)
* [8.19] Remove unsupported master_timeout from cat.aliases API * Run make contrib (cherry picked from commit 7f49f22) Co-authored-by: Quentin Pradet <[email protected]>
1 parent c5b590b commit 3e35b1c

File tree

6 files changed

+1
-61
lines changed

6 files changed

+1
-61
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 0 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 0 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 1 addition & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/validation-errors.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@
66
],
77
"response": []
88
},
9-
"cat.aliases": {
10-
"request": [
11-
"Request: query parameter 'master_timeout' does not exist in the json spec"
12-
],
13-
"response": []
14-
},
159
"esql.async_query_get": {
1610
"request": [
1711
"Request: query parameter 'format' does not exist in the json spec"

output/typescript/types.ts

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/cat/aliases/CatAliasesRequest.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
*/
1919

2020
import { ExpandWildcards, Names } from '@_types/common'
21-
import { Duration } from '@_types/Time'
2221
import { CatRequestBase } from '@cat/_types/CatBase'
2322

2423
/**
@@ -74,12 +73,5 @@ export interface Request extends CatRequestBase {
7473
* @server_default false
7574
*/
7675
local?: boolean
77-
/**
78-
* The period to wait for a connection to the master node.
79-
* If the master node is not available before the timeout expires, the request fails and returns an error.
80-
* To indicated that the request should never timeout, you can set it to `-1`.
81-
* @server_default 30s
82-
*/
83-
master_timeout?: Duration
8476
}
8577
}

0 commit comments

Comments
 (0)