You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by da...@apache.org on 2017/07/13 22:38:27 UTC

incubator-airflow git commit: [AIRFLOW-1247] Fix ignore all dependencies argument ignored

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 4322d6dae -> e88ecff6a


[AIRFLOW-1247] Fix ignore all dependencies argument ignored

Fix typo in ignore_all_dependencies argument to fix it.

Closes #2441 from aoen/ddavydov--
fix_ignore_all_deps_cli


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/e88ecff6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/e88ecff6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/e88ecff6

Branch: refs/heads/master
Commit: e88ecff6ac71758d763dd5037b177e7a2fbc9896
Parents: 4322d6d
Author: Dan Davydov <da...@airbnb.com>
Authored: Thu Jul 13 15:38:00 2017 -0700
Committer: Dan Davydov <da...@airbnb.com>
Committed: Thu Jul 13 15:38:03 2017 -0700

----------------------------------------------------------------------
 airflow/bin/cli.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/e88ecff6/airflow/bin/cli.py
----------------------------------------------------------------------
diff --git a/airflow/bin/cli.py b/airflow/bin/cli.py
index 4b3a0ed..f568d5d 100755
--- a/airflow/bin/cli.py
+++ b/airflow/bin/cli.py
@@ -1307,7 +1307,7 @@ class CLIFactory(object):
         'ignore_all_dependencies': Arg(
             ("-A", "--ignore_all_dependencies"),
             "Ignores all non-critical dependencies, including ignore_ti_state and "
-            "ignore_task_deps"
+            "ignore_task_deps",
             "store_true"),
         # TODO(aoen): ignore_dependencies is a poor choice of name here because it is too
         # vague (e.g. a task being in the appropriate state to be run is also a dependency