diff --git a/test/cpp/qps/client_sync.cc b/test/cpp/qps/client_sync.cc index 0809eb5b6c7..be3d73844fd 100644 --- a/test/cpp/qps/client_sync.cc +++ b/test/cpp/qps/client_sync.cc @@ -97,10 +97,10 @@ class SynchronousUnaryClient GRPC_FINAL : public SynchronousClient { class SynchronousStreamingClient GRPC_FINAL : public SynchronousClient { public: SynchronousStreamingClient(const ClientConfig& config): - SynchronousClient(config) { + SynchronousClient(config), context_(num_threads_) { for (size_t thread_idx=0;thread_idxStreamingCall(&context_); + stream_ = stub->StreamingCall(&context_[thread_idx]); } StartThreads(num_threads_); } @@ -122,7 +122,7 @@ class SynchronousStreamingClient GRPC_FINAL : public SynchronousClient { return false; } private: - grpc::ClientContext context_; + std::vector context_; std::unique_ptr> stream_; };