Apache Airflow version
latest v3-2-test branch and cherry-picked both #64598 patch and #64615 patch
Reproduce Step
Either a. or b. can work
a.
minimum Dag by @uranusjr
from __future__ import annotations
from airflow.providers.apache.kafka.triggers.await_message import AwaitMessageTrigger
from airflow.sdk import DAG, Asset, AssetWatcher, task
trigger = AwaitMessageTrigger(topics=())
asset = Asset("x", watchers=[AssetWatcher("am", trigger)])
with DAG(dag_id="t", schedule=asset) as dag:
pass
b.
follow #64613 to reproduce with e2e flow
What happened
The Triggerer showing no trigger and watcher is running:
Additiaonlly, it show 0 tigger in the DB:
airflow=# SELECT * FROM trigger;
id | classpath | kwargs | created_date | triggerer_id | queue
----+-----------+--------+--------------+--------------+-------
(0 rows)
What you think should happen instead?
No response
Operating System
Breeze
Versions of Apache Airflow Providers
No response
Deployment
None
Deployment details
No response
Anything else?
No response
Are you willing to submit PR?
Code of Conduct
Apache Airflow version
latest
v3-2-testbranch and cherry-picked both #64598 patch and #64615 patchReproduce Step
Either a. or b. can work
a.
minimum Dag by @uranusjr
b.
follow #64613 to reproduce with e2e flow
What happened
The Triggerer showing no trigger and watcher is running:
Additiaonlly, it show 0 tigger in the DB:
What you think should happen instead?
No response
Operating System
Breeze
Versions of Apache Airflow Providers
No response
Deployment
None
Deployment details
No response
Anything else?
No response
Are you willing to submit PR?
Code of Conduct