hussein-awala commented on issue #30863:
URL: https://github.com/apache/airflow/issues/30863#issuecomment-1522531380
you can fix the issue by updating the provided config file:
```diff
elif REMOTE_BASE_LOG_FOLDER.startswith("wasb"):
WASB_REMOTE_HANDLERS: dict[str, dict[str, str | bool | None]] = {
"task": {
"class":
"airflow.providers.microsoft.azure.log.wasb_task_handler.WasbTaskHandler",
"formatter": "airflow",
"base_log_folder": str(os.path.expanduser(BASE_LOG_FOLDER)),
"wasb_log_folder": REMOTE_BASE_LOG_FOLDER,
"wasb_container": "airflow-logs",
"filename_template": FILENAME_TEMPLATE,
+ "delete_local_copy": False,
},
}
```
or upgrading the provider to the latest version which use False as default
value, and in Airflow 2.6.0 you will be able to configure `delete_local_copy`
through Airflow config.
I'll check why do you have this problem, but can you test if this change can
fix it?
--
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]