Skip to content

Commit

Permalink
fix logger issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dstandish committed May 16, 2024
1 parent 7dca35c commit 6db95e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/datasets/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def _queue_dagrun_if_needed(dag: DagModel) -> str | None:
with session.begin_nested():
session.merge(item)
except exc.IntegrityError:
cls.logger().log.debug("Skipping record %s", item, exc_info=True)
cls.logger().debug("Skipping record %s", item, exc_info=True)
return dag.dag_id

queued_results = (_queue_dagrun_if_needed(ref.dag) for ref in dataset.consuming_dags)
Expand Down

0 comments on commit 6db95e0

Please sign in to comment.