Karthikeyan Singaravelan
Karthikeyan Singaravelan
Looks like a duplicate of https://github.com/apache/airflow/issues/40214
@hkc-8010 Does run_id in the details tab match the expected value and the query string in the url? Some changes were done in https://github.com/apache/airflow/issues/35946
If you are not doing anything on `execute_complete` and on track to upgrade to 2.10.0 maybe exit task directly from trigger could help. https://airflow.apache.org/docs/apache-airflow/stable/authoring-and-scheduling/deferring.html#exiting-deferred-task-from-triggers
It's added and stable in 2.10 and you can set `self.xcoms` which will get pushed. https://github.com/apache/airflow/blob/cf4f2caac93c3482c4812ce0f2e81f822f323762/airflow/triggers/base.py#L229 > TaskSuccessEvent and TaskFailureEvent are the two events that can be used to end...
Related issue #57210
Do you have Airflow fab provider installed? https://airflow.apache.org/docs/apache-airflow-providers-fab/stable/cli-ref.html https://github.com/apache/airflow/blob/main/providers/fab/src/airflow/providers/fab/auth_manager/cli_commands/user_command.py
Since the benchmark seems to be using http I think below is also a related issue where creation of ssl context in httpx had some overhead compared to aiohttp. Ref...
Nice idea. I found that there is [typeguard](https://github.com/agronholm/typeguard) project which can be used to perform run-time type checks. ```python # conftest.py import typeguard def pytest_collection_modifyitems(session, config, items): for item in...
cc: @ephraimbuddy @bbovenzi
I am unable to reproduce this on v2-10-test and 2.10.0 . cc: @bbovenzi