We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3032150 commit e7d4e89Copy full SHA for e7d4e89
python_modules/dagster/dagster/_core/instance/__init__.py
@@ -1669,7 +1669,7 @@ def create_reexecuted_run(
1669
# if the run was part of a backfill and the backfill is complete, we do not want the
1670
# retry to be considered part of the backfill, so remove all backfill-related tags
1671
backfill = self.get_backfill(parent_run.tags[BACKFILL_ID_TAG])
1672
- if backfill.status == BulkActionStatus.REQUESTED:
+ if backfill and backfill.status == BulkActionStatus.REQUESTED:
1673
for tag in BACKFILL_TAGS:
1674
if parent_run.tags.get(tag) is not None:
1675
parent_run_tags[tag] = parent_run.tags[tag]
0 commit comments