We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.9.1
PythonOperator( task_id="test_2", python_callable=a, pool="pool_1", pool_slots="a", )
airflow fail with
but
with
PythonOperator.partial( task_id="test", python_callable=a, pool="pool_1", pool_slots="a", ).expand(show_return_value_in_logs=[True])
airflow do not fail to parse the file and fail at trigger of the pipeline
airflow should detect incorrect args of partial
from airflow.operators.python import PythonOperator from pendulum import today from airflow import DAG with DAG( dag_id="test_partial", schedule_interval=None, start_date=today("UTC").add(days=-1)): def a(): return PythonOperator.partial( task_id="test", python_callable=a, pool="pool_1", pool_slots="a", ).expand(show_return_value_in_logs=[True])
The text was updated successfully, but these errors were encountered:
I would like to be assigned this issue.
Sorry, something went wrong.
Done!
karenbraganz
Successfully merging a pull request may close this issue.
Apache Airflow version
2.9.1
What happened?
airflow fail with
but
with
airflow do not fail to parse the file and fail at trigger of the pipeline
What you think should happen instead?
airflow should detect incorrect args of partial
How to reproduce
Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: