diff options
author | Craig Tiller <ctiller@google.com> | 2017-04-03 12:36:02 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-04-03 12:36:02 -0700 |
commit | 3eeba6de6b2bed5a38a6935fba50bfd933d5c387 (patch) | |
tree | 52461b4d260e01cf0c8a75fec36fcc2b0961e1bc /test/core/end2end/tests | |
parent | 5311d666db8d625073bbb9cc25d0b1f189356219 (diff) |
Increase grace time
Diffstat (limited to 'test/core/end2end/tests')
-rw-r--r-- | test/core/end2end/tests/max_connection_idle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/end2end/tests/max_connection_idle.c b/test/core/end2end/tests/max_connection_idle.c index 9dc1ee4766..c0984e4d14 100644 --- a/test/core/end2end/tests/max_connection_idle.c +++ b/test/core/end2end/tests/max_connection_idle.c @@ -89,8 +89,8 @@ static void test_max_connection_idle(grpc_end2end_test_config config) { /* wait for the channel to reach its maximum idle time */ grpc_channel_watch_connectivity_state( f.client, GRPC_CHANNEL_READY, - grpc_timeout_milliseconds_to_deadline(MAX_CONNECTION_IDLE_MS + 500), f.cq, - tag(99)); + grpc_timeout_milliseconds_to_deadline(MAX_CONNECTION_IDLE_MS + 3000), + f.cq, tag(99)); CQ_EXPECT_COMPLETION(cqv, tag(99), 1); cq_verify(cqv); state = grpc_channel_check_connectivity_state(f.client, 0); |