From 17544a076ce20b26c81cbe39a4b1d9dcb7fe0195 Mon Sep 17 00:00:00 2001 From: Kaxil Naik Date: Tue, 30 Jun 2020 01:44:53 +0100 Subject: [PATCH] Add more info on dry-run CLI option fixes https://github.com/apache/airflow/issues/9561 --- airflow/cli/cli_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/cli/cli_parser.py b/airflow/cli/cli_parser.py index 0245022375e696..8943bf2941605f 100644 --- a/airflow/cli/cli_parser.py +++ b/airflow/cli/cli_parser.py @@ -141,7 +141,7 @@ def positive_int(value): type=parsedate) ARG_DRY_RUN = Arg( ("-n", "--dry-run"), - help="Perform a dry run", + help="Perform a dry run for each task. Only renders Template Fields for each task, nothing else", action="store_true") ARG_PID = Arg( ("--pid",),