Skip to content
Snippets Groups Projects
Commit 8a4539e5 authored by Craig Tiller's avatar Craig Tiller
Browse files

Up retry count to try and counter flakiness

parent 4c8172ed
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