This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-0-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 7cf2f9b902cce02a60d1442eed98e524014fd3bc Author: Xiaodong DENG <xdd...@apache.org> AuthorDate: Tue May 20 02:11:57 2025 -0700 Fix the docstring for airflow.sdk.execution_time.superviseor.supervise (#50805) (cherry picked from commit 751c7bf7159ec936ca405b0bdb94f40884c8e13c) --- task-sdk/src/airflow/sdk/execution_time/supervisor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/task-sdk/src/airflow/sdk/execution_time/supervisor.py b/task-sdk/src/airflow/sdk/execution_time/supervisor.py index fcbf7126d97..81fd945cdbc 100644 --- a/task-sdk/src/airflow/sdk/execution_time/supervisor.py +++ b/task-sdk/src/airflow/sdk/execution_time/supervisor.py @@ -1471,7 +1471,7 @@ def supervise( Run a single task execution to completion. :param ti: The task instance to run. - :param bundle_info: Current DagRun of the task instance. + :param bundle_info: Information of the DAG bundle to use for this task instance. :param dag_rel_path: The file path to the DAG. :param token: Authentication token for the API client. :param server: Base URL of the API server.