You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by "Jarek Potiuk (Jira)" <ji...@apache.org> on 2020/01/05 18:29:00 UTC

[jira] [Created] (AIRFLOW-6472) Some of the options we have are long options with single -

Jarek Potiuk created AIRFLOW-6472:
-------------------------------------

             Summary: Some of the options we have are long options with single -
                 Key: AIRFLOW-6472
                 URL: https://issues.apache.org/jira/browse/AIRFLOW-6472
             Project: Apache Airflow
          Issue Type: Improvement
          Components: cli
    Affects Versions: 1.10.7, 2.0.0
            Reporter: Jarek Potiuk


We have some "short" options that are really "long" ones: namely -int and -sd in the run task. This is against the idea of short and long options in Unix (and argparse follows that). The main reason to have short options is that you can combine short options:

{{airflow task run -iAlm}}

When you have more than one letter "short" options this might become quickly ambiguous. We do not have -s yet but if we add few more options this might become a problem.

Also in the argparse documentation [https://docs.python.org/2/library/argparse.html] it's mentioned that short options should be single character only.\

This should be fixed.

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)