Skip to content

Commit

Permalink
increase timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Yuri Shkuro <github@ysh.us>
  • Loading branch information
yurishkuro committed Jan 14, 2021
1 parent b424d36 commit dface2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/discovery/grpcresolver/grpc_resolver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func makeSureConnectionsUp(t *testing.T, count int, testc grpctest.TestServiceCl
// Make sure connections to all servers are up.
for si := 0; si < count; si++ {
connected := false
for i := 0; i < 1000; i++ {
for i := 0; i < 3000; i++ { // 3000 * 10ms = 30s
_, err := testc.EmptyCall(context.Background(), &grpctest.Empty{}, grpc.Peer(&p))
if err != nil {
continue
Expand Down

0 comments on commit dface2f

Please sign in to comment.