zhongjiajie commented on a change in pull request #7148: [AIRFLOW-6472][WIP] Correct short option in cli URL: https://github.com/apache/airflow/pull/7148#discussion_r365653049
########## File path: UPDATING.md ########## @@ -57,6 +57,26 @@ https://developers.google.com/style/inclusive-documentation --> +### Cli use exactly single character for short option + +Use exactly one single character for short option in Airflow cli, New commands are available according to the following table: + +| Old command | New command | +|----------------------------------------------------|---------------------------------------------------| +| ``airflow (dags|tasks|scheduler) [-sd, --subdir]`` | ``airflow (dags|tasks|scheduler) [-S, --subdir]`` | +| ``airflow tasks test [-dr, --dry_run]`` | ``airflow tasks test [-dr, --dry_run]`` | +| ``airflow dags backfill [-dr, --dry_run]`` | ``airflow dags backfill [-d, --dry_run]`` | +| ``airflow tasks clear [-dx, --dag_regex]`` | ``airflow tasks clear [-R, --dag_regex]`` | +| ``airflow kerberos [-kt, --keytab]`` | ``airflow kerberos [-k, --keytab]`` | +| ``airflow tasks run [-int, --interactive]`` | ``airflow tasks run [-N, --interactive]`` | +| ``airflow webserver [-hn, --hostname]`` | ``airflow webserver [-H, --hostname]`` | Review comment: OOh, missing a space here, will add it after get some feedback here ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
