ferruzzi commented on code in PR #32980:
URL: https://github.com/apache/airflow/pull/32980#discussion_r1279947537


##########
airflow/providers/microsoft/azure/hooks/wasb.py:
##########
@@ -589,6 +585,10 @@ async def get_async_conn(self) -> AsyncBlobServiceClient:
             )
             return self.blob_service_client
 
+        account_url = conn.host if conn.host else 
f"https://{conn.login}.blob.core.windows.net/";
+        if not account_url.startswith("https://";):
+            account_url = f"https://{conn.login}.blob.core.windows.net/";

Review Comment:
   See above; if you make a change then do it here as well.



-- 
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]

Reply via email to