diff --git a/include/grpc++/impl/codegen/channel_interface.h b/include/grpc++/impl/codegen/channel_interface.h index b45d803b81fcbfd51f71f9079a2f62513d3fd2c7..cf7843811737e8d7a5bdd7225095c9fa11a8cf8b 100644 --- a/include/grpc++/impl/codegen/channel_interface.h +++ b/include/grpc++/impl/codegen/channel_interface.h @@ -86,7 +86,8 @@ class ChannelInterface { } /// Wait for this channel to be connected - template <typename T>bool WaitForConnected(T deadline) { + template <typename T> + bool WaitForConnected(T deadline) { grpc_connectivity_state state; while ((state = GetState(true)) != GRPC_CHANNEL_READY) { if (!WaitForStateChange(state, deadline)) return false; diff --git a/test/cpp/qps/client.h b/test/cpp/qps/client.h index f4292d8911314dc17f6b03eea4d049083697c8e1..2a89eb8018299faac6ff641864b6415b9a059bf9 100644 --- a/test/cpp/qps/client.h +++ b/test/cpp/qps/client.h @@ -38,10 +38,10 @@ #include <mutex> #include <vector> +#include <grpc++/channel.h> #include <grpc++/support/byte_buffer.h> #include <grpc++/support/channel_arguments.h> #include <grpc++/support/slice.h> -#include <grpc++/channel.h> #include <grpc/support/log.h> #include <grpc/support/time.h> @@ -317,7 +317,9 @@ class ClientImpl : public Client { config.has_security_params(), !config.security_params().use_test_ca(), std::shared_ptr<CallCredentials>(), args); gpr_log(GPR_INFO, "Connecting to %s", target.c_str()); - GPR_ASSERT(channel_->WaitForConnected(gpr_time_add(gpr_now(GPR_CLOCK_REALTIME), gpr_time_from_seconds(30, GPR_TIMESPAN)))); + GPR_ASSERT(channel_->WaitForConnected( + gpr_time_add(gpr_now(GPR_CLOCK_REALTIME), + gpr_time_from_seconds(30, GPR_TIMESPAN)))); stub_ = create_stub(channel_); } Channel* get_channel() { return channel_.get(); }