Fix airflow quicktest error

airflow quicktest is throwing an error when trying to start the
webserver:
    can't open file '_cmd': [Errno 2] No such file or directory

Change-Id: I3fddc1cdd3daeacc09a5924287d711a72878c5e3
This commit is contained in:
Phil Sphicas 2020-04-24 10:13:49 -07:00
parent b117fadbdb
commit 86d2e0d9f2
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ elif [[ $cmd == *scheduler* ]]; then
done
elif [[ $cmd == 'quicktest' ]]; then
${python3_path} ${airflow_path} initdb
${python3_path} ${airflow}_cmd webserver -p 8080 &
${python3_path} ${airflow_path} webserver -p 8080 &
airflow run example_bash_operator runme_0 2018-01-01
airflow backfill example_bash_operator -s 2018-01-01 -e 2018-01-02
airflow dag_state example_bash_operator 2018-01-01