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() {
113
113
local mysql=" mysql -u ${USER} --port=3306 --password=${PASSWORD} --host=$localhost "
114
114
115
115
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)
117
117
log " INFO" " Attempt $i : Pinging '$report_host ' has returned: '$out '...................................."
118
118
if [[ " $out " == " 1" ]]; then
119
119
break
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ function wait_for_mysqld_running() {
104
104
local mysql=" $mysql_header --host=$localhost "
105
105
106
106
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)
108
108
log " INFO" " Attempt $i : Pinging '$report_host ' has returned: '$out '...................................."
109
109
if [[ " $out " == " 1" ]]; then
110
110
break
You can’t perform that action at this time.
0 commit comments