This is an automated email from the ASF dual-hosted git repository. rahulvats pushed a commit to branch py-client-sync in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 7e8d55a5f1cd7e4d8a5844efcabdbed5f2f6d289 Author: Elad Kalif <[email protected]> AuthorDate: Mon Mar 23 23:36:48 2026 +0200 Fix conf import to common.compat in `ElasticsearchTaskHandler` (#64118) * Fix conf import to common.compat in `ElasticsearchTaskHandler` * Update providers/elasticsearch/pyproject.toml Co-authored-by: Jens Scheffler <[email protected]> --------- Co-authored-by: Jens Scheffler <[email protected]> --- .../src/airflow/providers/elasticsearch/log/es_task_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/elasticsearch/src/airflow/providers/elasticsearch/log/es_task_handler.py b/providers/elasticsearch/src/airflow/providers/elasticsearch/log/es_task_handler.py index f063749e523..a6ce2df705a 100644 --- a/providers/elasticsearch/src/airflow/providers/elasticsearch/log/es_task_handler.py +++ b/providers/elasticsearch/src/airflow/providers/elasticsearch/log/es_task_handler.py @@ -41,8 +41,8 @@ from elasticsearch import helpers from elasticsearch.exceptions import NotFoundError import airflow.logging_config as alc -from airflow.configuration import conf from airflow.models.dagrun import DagRun +from airflow.providers.common.compat.sdk import conf from airflow.providers.elasticsearch.log.es_json_formatter import ElasticsearchJSONFormatter from airflow.providers.elasticsearch.log.es_response import ElasticSearchResponse, Hit, resolve_nested from airflow.providers.elasticsearch.version_compat import AIRFLOW_V_3_0_PLUS, AIRFLOW_V_3_2_PLUS
