Skip to content

Commit

Permalink
Fix example_local_to_wasb system test (apache#32982)
Browse files Browse the repository at this point in the history
The test - when collected - throws Airflow Exception. This has
been revealed by apache#32978
  • Loading branch information
potiuk authored Jul 31, 2023
1 parent 1e20ef2 commit 05494e5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@
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

Expand Down

0 comments on commit 05494e5

Please sign in to comment.