Skip to content
Snippets Groups Projects
Commit cb13465f authored by Craig Tiller's avatar Craig Tiller Committed by GitHub
Browse files

Merge pull request #8863 from ctiller/fixit2

Up retry count to try and counter flakiness
parents ea7136bb 8a4539e5
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment