[AIRFLOW-6860] Default ignore_first_depends_on_past to True (#7610)

This commit is contained in:
Jiajie Zhong 2020-03-20 19:15:24 +08:00 коммит произвёл GitHub
Родитель 5106a29314
Коммит 9575706509
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -86,7 +86,7 @@ with DAG('my_dag):
### Deprecating ignore_first_depends_on_past on backfill command and default it to True
When doing backfill with `depends_on_past` dags, users will need to pass `ignore_first_depends_on_past`.
When doing backfill with `depends_on_past` dags, users will need to pass `--ignore-first-depends-on-past`.
We should default it as `true` to avoid confusion
### Custom executors is loaded using full import path

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

@ -68,7 +68,7 @@ def dag_backfill(args, dag=None):
signal.signal(signal.SIGTERM, sigint_handler)
import warnings
warnings.warn('--ignore_first_depends_on_past is deprecated as the value is always set to True',
warnings.warn('--ignore-first-depends-on-past is deprecated as the value is always set to True',
category=PendingDeprecationWarning)
if args.ignore_first_depends_on_past is False: