Repository: incubator-airflow Updated Branches: refs/heads/master f6e9f1bed -> 8ed30b1f0
[AIRFLOW-2436] Remove cli_logger in initdb Closes #3330 from jinhyukchang/master Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/8ed30b1f Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/8ed30b1f Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/8ed30b1f Branch: refs/heads/master Commit: 8ed30b1f0fb3cda81c482c9959da151376b8fe04 Parents: f6e9f1b Author: Jin Hyuk Chang <[email protected]> Authored: Thu May 10 10:15:27 2018 +0200 Committer: Bolke de Bruin <[email protected]> Committed: Thu May 10 10:15:27 2018 +0200 ---------------------------------------------------------------------- airflow/bin/cli.py | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/8ed30b1f/airflow/bin/cli.py ---------------------------------------------------------------------- diff --git a/airflow/bin/cli.py b/airflow/bin/cli.py index dc88104..3df8166 100644 --- a/airflow/bin/cli.py +++ b/airflow/bin/cli.py @@ -959,7 +959,6 @@ def worker(args): sp.kill() -@cli_utils.action_logging def initdb(args): # noqa print("DB: " + repr(settings.engine.url)) db_utils.initdb(settings.RBAC)
