This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v1-10-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 3898a5feaff5a396b301301a30da6c6dd197492e Author: Jarek Potiuk <[email protected]> AuthorDate: Thu Oct 8 21:08:11 2020 +0200 Better diagnostics when there are problems with Kerberos (#11353) (cherry picked from commit f5b7bbcb929d6b7cec6b2b3868fbff2db60797de) --- scripts/in_container/_in_container_utils.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/in_container/_in_container_utils.sh b/scripts/in_container/_in_container_utils.sh index dd4b7ce..7ef0cd1 100644 --- a/scripts/in_container/_in_container_utils.sh +++ b/scripts/in_container/_in_container_utils.sh @@ -204,6 +204,9 @@ function setup_kerberos() { RES_3=$? if [[ ${RES_1} != 0 || ${RES_2} != 0 || ${RES_3} != 0 ]]; then + echo + echo "Error when setting up Kerberos: ${RES_1} ${RES_2} ${RES_3}}!" + echo exit 1 else echo
