fix(ingest/airflow): fix plugin support for airflow 2.5.0 (#9719)

This commit is contained in:
Harshal Sheth 2024-01-26 14:01:48 -08:00 committed by GitHub
parent 051f570c47
commit 388b3ec0ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,6 +29,6 @@ if _listener:
if hasattr(_listener, "on_dag_run_running"):
@hookimpl
def on_dag_run_running(dag_run, session):
def on_dag_run_running(dag_run, msg):
assert _listener
_listener.on_dag_run_running(dag_run, session)
_listener.on_dag_run_running(dag_run, msg)