Merge pull request #15309 from AspirinSJL/run_server_fix

Fix bug in RunServer()
reviewable/pr15265/r9
Juanli Shen 7 years ago committed by GitHub
commit 802b49970a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      test/cpp/interop/interop_server.cc

@ -331,7 +331,7 @@ void grpc::testing::interop::RunServer(
void grpc::testing::interop::RunServer(
std::shared_ptr<ServerCredentials> creds, const int port,
ServerStartedCondition* server_started_condition) {
RunServer(creds, FLAGS_port, server_started_condition, nullptr);
RunServer(creds, port, server_started_condition, nullptr);
}
void grpc::testing::interop::RunServer(

Loading…
Cancel
Save