Skip to content

Commit

Permalink
Fix error message in production entrypoint.sh (#8396)
Browse files Browse the repository at this point in the history
Fix non-existent BACKEND environment variable, replace with DB_URL

GitOrigin-RevId: 5e3a831c8e4521d22f553d3c1b57a093c9de4199
  • Loading branch information
mbarrien authored and Cloud Composer Team committed Sep 11, 2024
1 parent 82fc256 commit 2f1dc00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function verify_db_connection {
fi
done
if [[ ${RES} != 0 ]]; then
echo " ERROR: ${BACKEND} db could not be reached!"
echo " ERROR: ${DB_URL} db could not be reached!"
echo
echo "${LAST_CHECK_RESULT}"
echo
Expand Down

0 comments on commit 2f1dc00

Please sign in to comment.