potiuk commented on code in PR #47691:
URL: https://github.com/apache/airflow/pull/47691#discussion_r2003428171
##########
Dockerfile:
##########
@@ -1094,7 +1094,7 @@ function create_www_user() {
--lastname "${_AIRFLOW_WWW_USER_LASTNAME="Admin"}" \
--email "${_AIRFLOW_WWW_USER_EMAIL="[email protected]"}" \
--role "${_AIRFLOW_WWW_USER_ROLE="Admin"}" \
- --password "${local_password}" || true
+ --password "${local_password}" > /dev/null 2>&1 || true
Review Comment:
Why this ? At the vvery leat It would be good to add some indication (echo
line before) that we are doing it, but the worst part is that if it will fail
we will not see error
--
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]