Skip to content
Snippets Groups Projects
Commit 8bec6a93 authored by Yuchen Zeng's avatar Yuchen Zeng Committed by GitHub
Browse files

Merge pull request #11589 from y-zeng/fix_bad_ping

Fix bad_ping
parents fdf30af6 32e41b45
No related branches found
No related tags found
No related merge requests found
...@@ -81,7 +81,10 @@ static void test_bad_ping(grpc_end2end_test_config config) { ...@@ -81,7 +81,10 @@ static void test_bad_ping(grpc_end2end_test_config config) {
.value.integer = 300000 /* 5 minutes */}, .value.integer = 300000 /* 5 minutes */},
{.type = GRPC_ARG_INTEGER, {.type = GRPC_ARG_INTEGER,
.key = GRPC_ARG_HTTP2_MAX_PING_STRIKES, .key = GRPC_ARG_HTTP2_MAX_PING_STRIKES,
.value.integer = MAX_PING_STRIKES}}; .value.integer = MAX_PING_STRIKES},
{.type = GRPC_ARG_INTEGER,
.key = GRPC_ARG_HTTP2_BDP_PROBE,
.value.integer = 0}};
grpc_channel_args client_args = {.num_args = GPR_ARRAY_SIZE(client_a), grpc_channel_args client_args = {.num_args = GPR_ARRAY_SIZE(client_a),
.args = client_a}; .args = client_a};
grpc_channel_args server_args = {.num_args = GPR_ARRAY_SIZE(server_a), grpc_channel_args server_args = {.num_args = GPR_ARRAY_SIZE(server_a),
......
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