feluelle commented on a change in pull request #11207:
URL: https://github.com/apache/airflow/pull/11207#discussion_r500097310
##########
File path: scripts/in_container/check_environment.sh
##########
@@ -107,8 +107,12 @@ function startairflow_if_requested() {
. "$( dirname "${BASH_SOURCE[0]}" )/configure_environment.sh"
# initialize db and create the admin user if it's a new run
- airflow db init
- airflow users create -u admin -p admin -f Thor -l Adminstra -r Admin
-e [email protected]
+ if [[ ${RUN_AIRFLOW_1_10} == "true" ]]; then
+ airflow initdb
+ else
+ airflow db init
+ airflow users create -u admin -p admin -f Thor -l Adminstra -r
Admin -e [email protected]
Review comment:
@potiuk there won't be any RBAC option in 2.0 anymore, right?
----------------------------------------------------------------
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]