File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ function wait_for_mysqld_running() {
113113 local mysql=" mysql -u ${USER} --port=3306 --password=${PASSWORD} --host=$localhost "
114114
115115 for i in {900..0}; do
116- out=$( $mysql -N -e " select 1;" 2> /dev/null)
116+ out=$( ${ mysql} -N -e " select 1;" 2> /dev/null)
117117 log " INFO" " Attempt $i : Pinging '$report_host ' has returned: '$out '...................................."
118118 if [[ " $out " == " 1" ]]; then
119119 break
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ function wait_for_mysqld_running() {
104104 local mysql=" $mysql_header --host=$localhost "
105105
106106 for i in {900..0}; do
107- out=$( mysql -N -e " select 1;" 2> /dev/null)
107+ out=$( ${ mysql} -N -e " select 1;" 2> /dev/null)
108108 log " INFO" " Attempt $i : Pinging '$report_host ' has returned: '$out '...................................."
109109 if [[ " $out " == " 1" ]]; then
110110 break
You can’t perform that action at this time.
0 commit comments