This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 05494e5d8e Fix example_local_to_wasb system test (#32982)
05494e5d8e is described below
commit 05494e5d8e0f57cf8a4a5b7dbbcdf8bb8e89d68c
Author: Jarek Potiuk <[email protected]>
AuthorDate: Tue Aug 1 00:25:50 2023 +0200
Fix example_local_to_wasb system test (#32982)
The test - when collected - throws Airflow Exception. This has
been revealed by #32978
---
tests/system/providers/microsoft/azure/example_local_to_wasb.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tests/system/providers/microsoft/azure/example_local_to_wasb.py
b/tests/system/providers/microsoft/azure/example_local_to_wasb.py
index 7fff09c135..6d69dbaa03 100644
--- a/tests/system/providers/microsoft/azure/example_local_to_wasb.py
+++ b/tests/system/providers/microsoft/azure/example_local_to_wasb.py
@@ -47,7 +47,9 @@ with DAG(
blob_name=AZURE_BLOB_NAME,
)
# [END howto_operator_local_to_wasb]
- delete = WasbDeleteBlobOperator(task_id="delete_file")
+ delete = WasbDeleteBlobOperator(
+ task_id="delete_file", blob_name=AZURE_BLOB_NAME,
container_name=AZURE_CONTAINER_NAME
+ )
upload >> delete