diff options
author | Mark D. Roth <roth@google.com> | 2016-10-07 13:06:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-07 13:06:59 -0700 |
commit | 70c0b32c0fc5db15c764a2e22c2491d19d7cff7b (patch) | |
tree | 28d60496da8d7b4b47c8ad4f1206590ac4863ec9 /test/core/bad_ssl/bad_ssl_test.c | |
parent | 9fee24f3a6a5360098cf76b5ef3707d6c3758779 (diff) | |
parent | 8bc8a83656eaf1bb3b1362edbb590013bd62a4a7 (diff) |
Merge pull request #8219 from markdroth/fail_fast
Change C++ API to expose wait_for_ready instead of fail_fast.
Diffstat (limited to 'test/core/bad_ssl/bad_ssl_test.c')
-rw-r--r-- | test/core/bad_ssl/bad_ssl_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/bad_ssl/bad_ssl_test.c b/test/core/bad_ssl/bad_ssl_test.c index c9cdb169b6..f8a9fe6cac 100644 --- a/test/core/bad_ssl/bad_ssl_test.c +++ b/test/core/bad_ssl/bad_ssl_test.c @@ -88,7 +88,7 @@ static void run_test(const char *target, size_t nops) { op = ops; op->op = GRPC_OP_SEND_INITIAL_METADATA; op->data.send_initial_metadata.count = 0; - op->flags = GRPC_INITIAL_METADATA_IGNORE_CONNECTIVITY; + op->flags = GRPC_INITIAL_METADATA_WAIT_FOR_READY; op->reserved = NULL; op++; op->op = GRPC_OP_RECV_STATUS_ON_CLIENT; |