kaxil commented on PR #73258: URL: https://github.com/apache/airflow/pull/73258#issuecomment-5784530231
Thanks for flagging. This was real but was fixed the next morning by #73302, which raised the floor to `starlette>=1.3.1`. The run you linked is from 2026-09-17 and resolved Starlette 1.0.1. In that version, the url-encoded `FormParser` has no `max_fields` limit (only `MultiPartParser` does), so the 2000-field body parses fine and fails `LoginBody` validation with 422. Starlette 1.3.1 added the limit that this test covers. `core:LowestDeps` API tests pass on current `main` (for example, run 35773153416), so a PR still showing this failure just needs a rebase. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
