Merge pull request #19219 from yang-g/cancel

Ask server to skip cancel check
pull/19230/head
Yang Gao 6 years ago committed by GitHub
commit 7c71a6e2e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      test/cpp/end2end/end2end_test.cc

@ -1875,6 +1875,7 @@ TEST_P(SecureEnd2endTest, AuthMetadataPluginWithDeadline) {
MAYBE_SKIP_TEST;
ResetStub();
EchoRequest request;
request.mutable_param()->set_skip_cancelled_check(true);
EchoResponse response;
ClientContext context;
const int delay = 100;
@ -1898,6 +1899,7 @@ TEST_P(SecureEnd2endTest, AuthMetadataPluginWithCancel) {
MAYBE_SKIP_TEST;
ResetStub();
EchoRequest request;
request.mutable_param()->set_skip_cancelled_check(true);
EchoResponse response;
ClientContext context;
const int delay = 100;

Loading…
Cancel
Save