eladkal commented on code in PR #41400:
URL: https://github.com/apache/airflow/pull/41400#discussion_r1713528855
##########
airflow/providers/microsoft/azure/hooks/msgraph.py:
##########
@@ -190,7 +190,7 @@ def get_conn(self) -> RequestAdapter:
client_id = connection.login
client_secret = connection.password
config = connection.extra_dejson if connection.extra else {}
- tenant_id = config.get("tenant_id")
+ tenant_id = config.get("tenantId") or config.get("tenant_id")
Review Comment:
If we want to change this then we should deprecate the old one.
But also, lets verify all settings. We should not mix two types of syntax's.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]