[fixit] Increase timeout to start connection (#30672)

* [fixit] Increase timeout to start connection

* Automated change: Fix sanity tests

Co-authored-by: ctiller <ctiller@users.noreply.github.com>
pull/30693/head
Craig Tiller 2 years ago committed by GitHub
parent bf3544840b
commit 1e1f7324e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      test/core/end2end/tests/retry_server_pushback_delay.cc

@ -34,6 +34,7 @@
#include "src/core/lib/channel/channel_args.h"
#include "src/core/lib/gpr/useful.h"
#include "src/core/lib/gprpp/time.h"
#include "src/core/lib/slice/slice_internal.h"
#include "test/core/end2end/cq_verifier.h"
#include "test/core/end2end/end2end_tests.h"
@ -200,7 +201,7 @@ static void test_retry_server_pushback_delay(grpc_end2end_test_config config) {
&request_metadata_recv, f.cq, f.cq, tag(101));
GPR_ASSERT(GRPC_CALL_OK == error);
cqv.Expect(tag(101), true);
cqv.Verify();
cqv.Verify(grpc_core::Duration::Seconds(20));
peer = grpc_call_get_peer(s);
GPR_ASSERT(peer != nullptr);

Loading…
Cancel
Save