This commit is contained in:
Kimyen Ladia 2022-07-26 08:57:41 -07:00
Родитель cd3be9b7a4
Коммит d113822ffc
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -243,7 +243,11 @@ class BackfillJob(BaseJob):
ti,
)
tis_to_be_scheduled.append(ti)
ti_status.running.pop(reduced_key)
try:
ti_status.running.pop(reduced_key)
except KeyError:
# the task is not running
pass
ti_status.to_run[ti.key] = ti
# Batch schedule of task instances