mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-05-31 03:17:23 +08:00
docs(openapi): add maxItems=500 to job_ids to match server cap
CodeRabbit catch on PR #13998: the Pydantic schema caps `job_ids` at 500 entries, but the OpenAPI parameter omitted `maxItems`, so generated clients and docs wouldn't reflect the runtime limit.
This commit is contained in:
parent
cdc61706c6
commit
f1adcaa87f
@ -1560,6 +1560,7 @@ paths:
|
|||||||
in: query
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: array
|
type: array
|
||||||
|
maxItems: 500
|
||||||
items:
|
items:
|
||||||
type: string
|
type: string
|
||||||
format: uuid
|
format: uuid
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user