We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88409e2 commit 7038d6eCopy full SHA for 7038d6e
.travis.yml
@@ -58,14 +58,14 @@ script:
58
# Check to make sure we can connect to MySQL via Unix socket.
59
- >
60
sudo docker exec "$(cat ${container_id})" mysql -u root -proot -e 'show databases;'
61
- | grep -q 'performance_schema'
+ | grep -q 'information_schema'
62
&& (echo 'MySQL running normally' && exit 0)
63
|| (echo 'MySQL not running' && exit 1)
64
65
# Check to make sure we can connect to MySQL via TCP.
66
67
sudo docker exec "$(cat ${container_id})" mysql -u root -proot -h 127.0.0.1 -e 'show databases;'
68
69
70
71
0 commit comments