jroachgolf84 commented on issue #53333: URL: https://github.com/apache/airflow/issues/53333#issuecomment-3070674182
What is the typical form that an `account_host` would take? Would it be something like this? `blob.core.windows.net` Or would it be the entire URL, more like this? `https://testaccountname.blob.core.customdomain.io` If the latter, what would happy if a `host` and `login` were provided? Why not just use the `host` itself, rather than setting an `account_host`? This is the logic that's being implemented right now: ```python def parse_blob_account_url(host: str | None, login: str | None) -> str: account_url = host if host else f"https://{login}.blob.core.windows.net/" ``` -- 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]
