aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/end2end/tests/connectivity.c
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2016-12-09 22:42:54 -0800
committerGravatar Sree Kuchibhotla <sreek@google.com>2016-12-09 22:42:54 -0800
commite33daabb8806de494bcaa9adf201025dadf5d102 (patch)
tree9fcf80078db52fca0bfff84618042414f4f8d4cc /test/core/end2end/tests/connectivity.c
parent762ce2744c4c3814d537705e8fdfb54f4a64f26a (diff)
parent48b1558823355016ffc852ca6b97d6b39f4c04eb (diff)
Merge branch 'master' into reduce_cq
Diffstat (limited to 'test/core/end2end/tests/connectivity.c')
-rw-r--r--test/core/end2end/tests/connectivity.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/test/core/end2end/tests/connectivity.c b/test/core/end2end/tests/connectivity.c
index 260297ebd4..42475c7331 100644
--- a/test/core/end2end/tests/connectivity.c
+++ b/test/core/end2end/tests/connectivity.c
@@ -68,7 +68,15 @@ static void test_connectivity(grpc_end2end_test_config config) {
gpr_thd_options thdopt = gpr_thd_options_default();
gpr_thd_id thdid;
- config.init_client(&f, NULL);
+ grpc_channel_args client_args;
+ grpc_arg arg_array[1];
+ arg_array[0].type = GRPC_ARG_INTEGER;
+ arg_array[0].key = "grpc.testing.fixed_reconnect_backoff_ms";
+ arg_array[0].value.integer = 1000;
+ client_args.args = arg_array;
+ client_args.num_args = 1;
+
+ config.init_client(&f, &client_args);
ce.channel = f.client;
ce.cq = f.cq;