No need to do an extra read

pull/1113/head
Vijay Pai 10 years ago
parent c5b397927c
commit 55bb5bdf80
  1. 8
      test/cpp/qps/client_sync.cc

@ -108,10 +108,7 @@ class SynchronousStreamingClient GRPC_FINAL : public SynchronousClient {
if (stream_) { if (stream_) {
SimpleResponse response; SimpleResponse response;
stream_->WritesDone(); stream_->WritesDone();
EXPECT_FALSE(stream_->Read(&response)); EXPECT_TRUE(stream_->Finish().IsOk());
Status s = stream_->Finish();
EXPECT_TRUE(s.IsOk());
} }
} }
@ -123,7 +120,8 @@ class SynchronousStreamingClient GRPC_FINAL : public SynchronousClient {
} }
private: private:
grpc::ClientContext context_; grpc::ClientContext context_;
std::unique_ptr<grpc::ClientReaderWriter<SimpleRequest,SimpleResponse>> stream_; std::unique_ptr<grpc::ClientReaderWriter<SimpleRequest,
SimpleResponse>> stream_;
}; };
std::unique_ptr<Client> std::unique_ptr<Client>

Loading…
Cancel
Save