deepujain commented on PR #72402:
URL: https://github.com/apache/airflow/pull/72402#issuecomment-5748220606

   The lowest-deps CI failure (`test_form_parser_error_keeps_its_own_detail`, 
422 vs 400) traces to the starlette floor on this branch. With 
`starlette>=1.0.1`, the urlencoded form parser does not bound the field count, 
so the 2000-field test body parses cleanly and then fails pydantic validation 
(422) instead of raising starlette's own 400. Upstream addressed this in #73302 
by raising the floor to `starlette>=1.3.1`, whose `FormParser` enforces 
`max_fields` and reports a 400.
   
   I have cherry-picked #73302 onto this branch so the lowest-deps job resolves 
the bounded parser. No changes to the PR's own code; CI should go green on the 
rerun.
   
   ---
   Drafted-by: Muse Spark (Meta) (no human review before posting)
   


-- 
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]

Reply via email to