ldacey commented on issue #34022: URL: https://github.com/apache/airflow/issues/34022#issuecomment-1705536872
It looks like 9 months ago (Nov 2022) I added changed my config to use deepcopy. ```python from copy import deepcopy from airflow.config_templates.airflow_local_settings import DEFAULT_LOGGING_CONFIG REMOTE_BASE_LOG_FOLDER = "wasb://[email protected]" LOGGING_CONFIG = deepcopy(DEFAULT_LOGGING_CONFIG) ``` I also had a env var for REMOTE_BASE_LOG_FOLDER set as well. I assume that this variable was overwriting the variable in my log_config.py. <img width="1163" alt="image" src="https://github.com/apache/airflow/assets/12517855/5b2b64f6-a300-4bb3-930e-3f10801d864e"> ___ > I doubt if you were able to specify the remote_base_log_folder previously as wasb://[email protected] as you mentioned above. Isn't that what the official docs show? https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure/stable/logging/index.html <img width="857" alt="image" src="https://github.com/apache/airflow/assets/12517855/9ec2e245-62e9-4a74-8973-9f6fafe1cba9"> Regarding the previous versions, my last image build was 4 months ago and Airflow 2.6.0 and the 6.0.0 provider for Azure were installed. ``` Downloading apache_airflow-2.6.0-py3-none-any.whl (12.1 MB) Downloading apache_airflow_providers_microsoft_azure-6.0.0-py3-none-any.whl (118 kB) ``` -- 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]
