2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-22 02:32:21 +00:00

s3: Increase wait time for minio server

This commit is contained in:
Alexander Neumann 2017-06-08 20:50:56 +02:00
parent a61016cb55
commit a325a20fb4

View File

@ -49,7 +49,7 @@ func runMinio(ctx context.Context, t testing.TB, dir, key, secret string) func()
// wait until the TCP port is reachable
var success bool
for i := 0; i < 10; i++ {
for i := 0; i < 100; i++ {
time.Sleep(200 * time.Millisecond)
c, err := net.Dial("tcp", "localhost:9000")