forked from TrueCloudLab/restic
s3: Ignore errors for terminated minio server
This commit is contained in:
parent
860b52273e
commit
f2b83ece10
1 changed files with 3 additions and 0 deletions
|
@ -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()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue