You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/06/30 08:04:54 UTC

[airflow] branch master updated: Add more info on dry-run CLI option (#9582)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 4de5089  Add more info on dry-run CLI option (#9582)
4de5089 is described below

commit 4de5089fd2edfe6fe6fc6a96df8de504d673b60a
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Tue Jun 30 09:04:25 2020 +0100

    Add more info on dry-run CLI option (#9582)
    
    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 0245022..8943bf2 100644
--- a/airflow/cli/cli_parser.py
+++ b/airflow/cli/cli_parser.py
@@ -141,7 +141,7 @@ ARG_END_DATE = Arg(
     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",),