diff options
author | Noah Eisen <ncteisen@google.com> | 2016-09-29 12:01:11 -0700 |
---|---|---|
committer | Noah Eisen <ncteisen@google.com> | 2016-09-29 12:01:11 -0700 |
commit | 0adb72808356704967d0478f56a862a3da2ee913 (patch) | |
tree | ad9786bc5574f67bb55a1a48255f4b30f8a1421a /test/cpp/interop | |
parent | 7bc012fe8babe62d26c4be5bbb6a83d736489266 (diff) |
removed check for status error message. Investigating why node servers send messages back that are not empty
Diffstat (limited to 'test/cpp/interop')
-rw-r--r-- | test/cpp/interop/interop_client.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/cpp/interop/interop_client.cc b/test/cpp/interop/interop_client.cc index 65519a03a8..a54dd5a744 100644 --- a/test/cpp/interop/interop_client.cc +++ b/test/cpp/interop/interop_client.cc @@ -135,7 +135,7 @@ bool InteropClient::AssertStatusOk(const Status& s) { } // Note: At this point, s.error_code is definitely not StatusCode::OK (we - // already checked for s.ok() above). So, the following will call abort() + // already checked for s.ok() all call abort() // (unless s.error_code() corresponds to a transient failure and // 'do_not_abort_on_transient_failures' is true) return AssertStatusCode(s, StatusCode::OK); @@ -951,8 +951,6 @@ bool InteropClient::DoUnimplementedMethod() { return false; } - GPR_ASSERT(s.error_message().empty()); - gpr_log(GPR_DEBUG, "unimplemented rpc done."); return true; } |