Răsfoiți Sursa

Connections

Joe Ferguson 10 ani în urmă
părinte
comite
53af1230aa

+ 1 - 1
test/tests/mongo-basics/run.sh

@@ -19,7 +19,7 @@ tries=10
 while ! mongo_eval 'quit(db.stats().ok ? 0 : 1);' &> /dev/null; do
 	(( tries-- ))
 	if [ $tries -le 0 ]; then
-		echo >&2 'mongod failed to accept connetions in a reasonable amount of time!'
+		echo >&2 'mongod failed to accept connections in a reasonable amount of time!'
 		mongo --eval 'db.stats();' # to hopefully get a useful error message
 		false
 	fi

+ 1 - 1
test/tests/mysql-basics/run.sh

@@ -20,7 +20,7 @@ tries=10
 while ! echo 'SELECT 1' | mysql &> /dev/null; do
 	(( tries-- ))
 	if [ $tries -le 0 ]; then
-		echo >&2 'mysqld failed to accept connetions in a reasonable amount of time!'
+		echo >&2 'mysqld failed to accept connections in a reasonable amount of time!'
 		echo 'SELECT 1' | mysql # to hopefully get a useful error message
 		false
 	fi

+ 1 - 1
test/tests/postgres-basics/run.sh

@@ -28,7 +28,7 @@ tries=10
 while ! echo 'SELECT 1' | psql &> /dev/null; do
 	(( tries-- ))
 	if [ $tries -le 0 ]; then
-		echo >&2 'postgres failed to accept connetions in a reasonable amount of time!'
+		echo >&2 'postgres failed to accept connections in a reasonable amount of time!'
 		echo 'SELECT 1' | psql # to hopefully get a useful error message
 		false
 	fi

+ 1 - 1
test/tests/postgres-initdb/run.sh

@@ -37,7 +37,7 @@ tries=10
 while ! echo 'SELECT 1' | psql &> /dev/null; do
 	(( tries-- ))
 	if [ $tries -le 0 ]; then
-		echo >&2 'postgres failed to accept connetions in a reasonable amount of time!'
+		echo >&2 'postgres failed to accept connections in a reasonable amount of time!'
 		echo 'SELECT 1' | psql # to hopefully get a useful error message
 		false
 	fi