Shared Mysql fix 3

This commit is contained in:
Vaibhav Pathak 2026-02-23 17:17:26 +05:30
parent 9d7b4c7b28
commit cdf412daf4

View File

@ -92,7 +92,7 @@ spec:
echo -n "Applying $filename... " echo -n "Applying $filename... "
if mysql -h"${MYSQL_HOST}" -P"${MYSQL_PORT}" -u"root" < "$sql_file" 2>/tmp/migration_error.log; then if mysql -h"${MYSQL_HOST}" -P"${MYSQL_PORT}" -u"${MYSQL_USER}" < "$sql_file" 2>/tmp/migration_error.log; then
echo "✓ SUCCESS" echo "✓ SUCCESS"
SUCCESS=$((SUCCESS + 1)) SUCCESS=$((SUCCESS + 1))
else else