Skip to content

Commit f286a6e

Browse files
author
MIYASHITA, Akihiro
committed
fix
1 parent 97f5328 commit f286a6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/connection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ class MySQLCassette {
272272
async newConnection(options) {
273273
for (let retries = 10; retries > 0; retries--) {
274274
try {
275-
exec('service mysql start');
275+
await exec('service mysql start');
276276
const conn = knex({
277277
client: 'mysql',
278278
connection: {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "track-db-test-library",
3-
"version": "2.6.0-rc4",
3+
"version": "2.6.0-rc5",
44
"description": "Test utility for Track database challenges",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)