ashb commented on a change in pull request #7148: [AIRFLOW-6472] Correct short and long option in cli URL: https://github.com/apache/airflow/pull/7148#discussion_r385593166
########## File path: UPDATING.md ########## @@ -59,6 +59,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 [-n, --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]`` | Review comment: There's already a section in updating about moving the commands around -- lets place this along-side that/under the same heading. ---------------------------------------------------------------- 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
