[DSRE-1135] Fix backfill plugin ui clear infinite loop

This commit is contained in:
Harold Woo 2023-01-05 10:49:13 -08:00 коммит произвёл haroldwoo
Родитель e1f51b0bb9
Коммит 4cf845b224
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -114,7 +114,7 @@ class Backfill(get_baseview()):
if result:
# Adhere to text/event-stream format
line = line.replace('<', '').replace('>', '')
elif clear == 'true' and dry_run == 'false':
elif clear and not dry_run:
# Special case/hack, airflow tasks clear -y no longer outputs a termination string, so we put one
line = "Clear Done"