add missing timeout parameter for get point API (#10235)

GET /collections/{name}/points/{id} already accepts ReadParams.timeout;
OpenAPI only documented consistency. Match the POST /points query parameters.
This commit is contained in:
David Dallakyan
2026-08-16 10:24:04 +02:00
committed by GitHub
parent bb43c9d057
commit e45c248d38
3 changed files with 26 additions and 0 deletions
+10
View File
@@ -4225,6 +4225,16 @@
"schema": {
"$ref": "#/components/schemas/ReadConsistency"
}
},
{
"name": "timeout",
"in": "query",
"description": "If set, overrides global timeout for this request. Unit is seconds.",
"required": false,
"schema": {
"type": "integer",
"minimum": 1
}
}
],
"responses": {