From 3ce107be8f59058f6ecbf1aa3562dcd345007cd3 Mon Sep 17 00:00:00 2001 From: Elad Kalif <45845474+eladkal@users.noreply.github.com> Date: Wed, 16 Jul 2025 09:46:02 +0300 Subject: [PATCH] Update doc string for BaseOperator --- task-sdk/src/airflow/sdk/bases/operator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/task-sdk/src/airflow/sdk/bases/operator.py b/task-sdk/src/airflow/sdk/bases/operator.py index 0fdb96c597b1b..3a5388f9d1acd 100644 --- a/task-sdk/src/airflow/sdk/bases/operator.py +++ b/task-sdk/src/airflow/sdk/bases/operator.py @@ -788,8 +788,8 @@ class derived from this one results in the creation of a task object, :param task_display_name: The display name of the task which appears on the UI. :param logger_name: Name of the logger used by the Operator to emit logs. If set to `None` (default), the logger name will fall back to - `airflow.task.operators.{class.__module__}.{class.__name__}` (e.g. SimpleHttpOperator will have - *airflow.task.operators.airflow.providers.http.operators.http.SimpleHttpOperator* as logger). + `airflow.task.operators.{class.__module__}.{class.__name__}` (e.g. HttpOperator will have + *airflow.task.operators.airflow.providers.http.operators.http.HttpOperator* as logger). :param allow_nested_operators: if True, when an operator is executed within another one a warning message will be logged. If False, then an exception will be raised if the operator is badly used (e.g. nested within another one). In future releases of Airflow this parameter will be removed and an exception