Skip to content

Commit 5617e9b

Browse files
committed
fix: echo "${MARIADB_URI-$uri}" for case "${db}" in mariadb in auto_database_uri function
previously it was `echo "${MYSQL_URI-$uri}"` Signed-off-by: Siddharth Tiwari <[email protected]>
1 parent ef5de19 commit 5617e9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auto-deploy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ function auto_database_uri() {
179179

180180
mariadb)
181181
uri="jdbc:mysql://${MARIADB_RELEASE_NAME}:3306/${MARIADB_DB}?username=${MARIADB_USER}&password=${MARIADB_PASSWORD}"
182-
echo "${MYSQL_URI-$uri}"
182+
echo "${MARIADB_URI-$uri}"
183183
;;
184184
mongodb)
185185
uri="mongodb://${MONGODB_USER}:${MONGODB_PASSWORD}@${MONGODB_RELEASE_NAME}:27017/${MONGODB_DB}"

0 commit comments

Comments
 (0)