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 985a6cd2a8 invalid args fix (#32326)
985a6cd2a8 is described below
commit 985a6cd2a84daa4511649dfdc9e94b704de5c6d1
Author: Akash Sharma <[email protected]>
AuthorDate: Mon Jul 3 18:54:59 2023 +0530
invalid args fix (#32326)
---
airflow/providers/microsoft/azure/example_dag/example_wasb_sensors.py | 1 -
1 file changed, 1 deletion(-)
diff --git
a/airflow/providers/microsoft/azure/example_dag/example_wasb_sensors.py
b/airflow/providers/microsoft/azure/example_dag/example_wasb_sensors.py
index 349e09c44a..8d449e52a1 100644
--- a/airflow/providers/microsoft/azure/example_dag/example_wasb_sensors.py
+++ b/airflow/providers/microsoft/azure/example_dag/example_wasb_sensors.py
@@ -54,7 +54,6 @@ with DAG(
# [START wasb_prefix_sensor]
azure_wasb_prefix_sensor = WasbPrefixSensor(
container_name=CONTAINER_NAME,
- blob_name=BLOB_NAME,
prefix=PREFIX,
task_id="wasb_sense_prefix",
)