From ca9659715e1f6d81cb71ecfa5a66b8ddb74e40a2 Mon Sep 17 00:00:00 2001 From: David Blain Date: Fri, 17 Jan 2025 12:32:04 +0100 Subject: [PATCH] refactor: Fixed assignment of proxies parameter in KiotaRequestAdapterHook (#45741) Co-authored-by: David Blain --- .../src/airflow/providers/microsoft/azure/hooks/msgraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/src/airflow/providers/microsoft/azure/hooks/msgraph.py b/providers/src/airflow/providers/microsoft/azure/hooks/msgraph.py index 4a60022d73817..0e12696d9f32b 100644 --- a/providers/src/airflow/providers/microsoft/azure/hooks/msgraph.py +++ b/providers/src/airflow/providers/microsoft/azure/hooks/msgraph.py @@ -288,7 +288,7 @@ def get_conn(self) -> RequestAdapter: http_client = GraphClientFactory.create_with_default_middleware( api_version=api_version, # type: ignore client=httpx.AsyncClient( - mounts=httpx_proxies, + proxy=httpx_proxies, # type: ignore timeout=Timeout(timeout=self.timeout), verify=verify, trust_env=trust_env,