Skip to content

Commit

Permalink
Merge pull request grpc#8863 from ctiller/fixit2
Browse files Browse the repository at this point in the history
Up retry count to try and counter flakiness
  • Loading branch information
ctiller authored Nov 28, 2016
2 parents ea7136b + 8a4539e commit cb13465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/core/handshake/client_ssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ static bool client_ssl_test(char *server_alpn_preferred) {
// and port picking.
int port = -1;
int server_socket = -1;
int socket_retries = 10;
int socket_retries = 30;
while (server_socket == -1 && socket_retries-- > 0) {
port = grpc_pick_unused_port_or_die();
server_socket = create_socket(port);
Expand Down

0 comments on commit cb13465

Please sign in to comment.