Skip to content

Commit 378c607

Browse files
committedAug 21, 2015
pause for couchdb as well as mysql
1 parent f1da251 commit 378c607

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎mktmpio.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ func localShell(instance *mktmpio.Instance) error {
5858
cmd.Stdin = os.Stdin
5959
cmd.Stdout = os.Stdout
6060
cmd.Stderr = os.Stderr
61-
// MySQL is particularly slow to start up
62-
if instance.Type == "mysql" {
61+
// some server types are slower than others
62+
if t := instance.Type; t == "mysql" || t == "couchdb" {
6363
time.Sleep(500 * time.Millisecond)
6464
} else {
6565
time.Sleep(100 * time.Millisecond)

0 commit comments

Comments
 (0)
Please sign in to comment.