s3: Ignore errors for terminated minio server

This commit is contained in:
Alexander Neumann 2017-05-11 22:40:39 +02:00
parent 860b52273e
commit f2b83ece10
1 changed files with 3 additions and 0 deletions

View File

@ -71,6 +71,9 @@ func runMinio(ctx context.Context, t testing.TB, dir, key, secret string) func()
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
// ignore errors, we've killed the process
_ = cmd.Wait()
} }
} }