potiuk commented on issue #17120: URL: https://github.com/apache/airflow/issues/17120#issuecomment-889797457
> File "/usr/local/lib/python3.8/dist-packages/airflow/cli/cli_parser.py", line 48, in command There might be multiple reasons why the change might be not taken into account when you just replace the files (.pyc code not recompiled, different location of airflow installation) You can check the actual location by running this in your python interpreter (but it can also be installed in virtualenv, so you need to make sure you have that virtualenv activated). ``` import airflow.cli airflow.cli.__file__ ``` Usually - to be 100% sure, i change such code and raise some hard exception there directly and see if *really* the modified code is used. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
