gopidesupavan commented on code in PR #52497:
URL: https://github.com/apache/airflow/pull/52497#discussion_r2174979382
##########
providers/apache/cassandra/tests/system/apache/cassandra/example_cassandra_dag.py:
##########
@@ -45,9 +45,14 @@
catchup=False,
tags=["example"],
) as dag:
- table_sensor = CassandraTableSensor(task_id="cassandra_table_sensor")
+ table_sensor = CassandraTableSensor(task_id="cassandra_table_sensor",
table="<table_name>")
+
+ record_sensor = CassandraRecordSensor(
+ task_id="cassandra_record_sensor", keys={"p1": "v1", "p2": "v2"},
table="<table_name>"
+ )
Review Comment:
yeah table is mandatory filed, so updated that one. i think if you have
correct conn_id then it should work? i have not ran 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]