Преглед на файлове

Merge pull request #941 from infosiftr/connections

Connections
Tianon Gravi преди 10 години
родител
ревизия
afa66b283c
променени са 4 файла, в които са добавени 4 реда и са изтрити 4 реда
  1. 1 1
      test/tests/mongo-basics/run.sh
  2. 1 1
      test/tests/mysql-basics/run.sh
  3. 1 1
      test/tests/postgres-basics/run.sh
  4. 1 1
      test/tests/postgres-initdb/run.sh

+ 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