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 287b1d800d8 Remove breakpoint in airflow/models/dagrun.py (#45828)
287b1d800d8 is described below
commit 287b1d800d8748d23387936a88c943c2df241c57
Author: Kaxil Naik <[email protected]>
AuthorDate: Tue Jan 21 19:16:49 2025 +0530
Remove breakpoint in airflow/models/dagrun.py (#45828)
We missed it in the PR!
---
airflow/models/dagrun.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/airflow/models/dagrun.py b/airflow/models/dagrun.py
index 8795c050708..35d8af4322c 100644
--- a/airflow/models/dagrun.py
+++ b/airflow/models/dagrun.py
@@ -1471,7 +1471,6 @@ class DagRun(Base, LoggingMixin):
map_indexes: Iterable[int]
for task in tasks:
try:
- breakpoint
count = BaseOperator.get_mapped_ti_count(task, self.run_id,
session=session)
except (NotMapped, NotFullyPopulated):
map_indexes = (-1,)