This is an automated email from the ASF dual-hosted git repository.
jasonliu 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 a3584d730bf Use compat sdk conf import in Google Gen AI operators
(#64157)
a3584d730bf is described below
commit a3584d730bf86349b131d7929c6c0af504cdfa66
Author: Yuseok Jo <[email protected]>
AuthorDate: Thu Mar 26 11:40:22 2026 +0900
Use compat sdk conf import in Google Gen AI operators (#64157)
* Use compat sdk conf import in Google Gen AI operators
* Remove common-compat "use next version" comment
---
providers/google/src/airflow/providers/google/cloud/operators/gen_ai.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/providers/google/src/airflow/providers/google/cloud/operators/gen_ai.py
b/providers/google/src/airflow/providers/google/cloud/operators/gen_ai.py
index 79381044a2f..da081840a7c 100644
--- a/providers/google/src/airflow/providers/google/cloud/operators/gen_ai.py
+++ b/providers/google/src/airflow/providers/google/cloud/operators/gen_ai.py
@@ -27,8 +27,8 @@ from typing import TYPE_CHECKING, Any
from google.genai.errors import ClientError
from google.genai.types import BatchJob
-from airflow.configuration import conf
from airflow.exceptions import AirflowException
+from airflow.providers.common.compat.sdk import conf
from airflow.providers.google.cloud.hooks.gen_ai import (
BatchJobStatus,
GenAIGeminiAPIHook,