2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-27 21:03:29 +00:00

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

View File

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