xds_end2end_test: Set skip cancelled check (#28453)

* xds_end2end_test: Set skip cancelled check

* Reviewer comment
pull/27846/head
Yash Tibrewal 3 years ago committed by GitHub
parent 269b076c93
commit f00432c70b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      test/cpp/end2end/xds/xds_end2end_test.cc

@ -8308,6 +8308,11 @@ class XdsServerSecurityTest : public XdsEnd2endTest {
context.set_wait_for_ready(true);
context.set_deadline(grpc_timeout_milliseconds_to_deadline(2000));
EchoRequest request;
// TODO(yashykt): Skipping the cancelled check on the server since the
// server's graceful shutdown isn't as per spec and the check isn't
// necessary for what we want to test here anyway.
// https://github.com/grpc/grpc/issues/24237
request.mutable_param()->set_skip_cancelled_check(true);
request.set_message(kRequestMessage);
EchoResponse response;
Status status = stub->Echo(&context, request, &response);

Loading…
Cancel
Save