This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new b39159722ad Migrate redis provider to use
airflow.sdk.configuration.conf (#59983)
b39159722ad is described below
commit b39159722adbb16763f446f535f531b516dbcb98
Author: Ankit Chaurasia <[email protected]>
AuthorDate: Thu Jan 1 00:53:22 2026 +0545
Migrate redis provider to use airflow.sdk.configuration.conf (#59983)
---
providers/redis/pyproject.toml | 2 +-
providers/redis/src/airflow/providers/redis/log/redis_task_handler.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/providers/redis/pyproject.toml b/providers/redis/pyproject.toml
index e07b270959f..4811dfa6b3f 100644
--- a/providers/redis/pyproject.toml
+++ b/providers/redis/pyproject.toml
@@ -59,7 +59,7 @@ requires-python = ">=3.10"
# After you modify the dependencies, and rebuild your Breeze CI image with
``breeze ci-image build``
dependencies = [
"apache-airflow>=2.11.0",
- "apache-airflow-providers-common-compat>=1.10.1",
+ "apache-airflow-providers-common-compat>=1.10.1", # use next version
# 5.0.2 excluded due to breaking changes which fixed in
https://github.com/redis/redis-py/pull/3176
"redis>=4.5.2,!=4.5.5,!=5.0.2",
]
diff --git
a/providers/redis/src/airflow/providers/redis/log/redis_task_handler.py
b/providers/redis/src/airflow/providers/redis/log/redis_task_handler.py
index 86419f2142e..54e68922c27 100644
--- a/providers/redis/src/airflow/providers/redis/log/redis_task_handler.py
+++ b/providers/redis/src/airflow/providers/redis/log/redis_task_handler.py
@@ -21,7 +21,7 @@ import logging
from functools import cached_property
from typing import TYPE_CHECKING
-from airflow.configuration import conf
+from airflow.providers.common.compat.sdk import conf
from airflow.providers.redis.hooks.redis import RedisHook
from airflow.providers.redis.version_compat import AIRFLOW_V_3_0_PLUS
from airflow.utils.log.file_task_handler import FileTaskHandler