dheerajturaga commented on PR #72925: URL: https://github.com/apache/airflow/pull/72925#issuecomment-5687202660
Thanks for the fix. Could you please address these items? - The provider mypy check fails at `test_worker.py:114` because `body["sysinfo"]` is inferred as `object`. Please add explicit typing and rerun CI. - `_version()` catches `InvalidVersion`, but `sysinfo` also accepts integers, floats, and datetimes. Passing one of those to `Version()` raises `TypeError`, so malformed client input can still return HTTP 500. Please validate that version fields are strings or handle `TypeError`, and add a regression test. --- Drafted-by: Codex (GPT-5); reviewed by @dheerajturaga 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]
