Increase FlushChannel timeout to 3min (#27180)

Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
This commit is contained in:
yihao.dai 2023-09-18 19:49:22 +08:00 committed by GitHub
parent 4b2802033d
commit fd73213539
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -138,7 +138,7 @@ func (s *Server) Flush(ctx context.Context, req *datapb.FlushRequest) (*datapb.F
}
}
return nil
}, retry.Attempts(20)) // about 60s
}, retry.Attempts(60)) // about 3min
if err != nil {
resp.Status = merr.Status(err)
return resp, nil