pull/37755/head
Nathan Baulch 2 months ago
parent 676d0a633d
commit 9a7fd9d65f
No known key found for this signature in database
  1. 2
      test/cpp/end2end/xds/xds_server.h
  2. 5
      test/cpp/qps/qps_json_driver.cc

@ -371,7 +371,7 @@ class AdsServiceImpl
} }
if (check_version_callback_ != nullptr) { if (check_version_callback_ != nullptr) {
check_version_callback_(request.type_url(), check_version_callback_(request.type_url(),
client_resource_type_version); client_resource_type_version);
} }
} else { } else {
int client_nonce; int client_nonce;

@ -104,8 +104,9 @@ ConstructPerWorkerCredentialTypesMap() {
} }
size_t comma = next_entry.find(','); size_t comma = next_entry.find(',');
if (comma == std::string::npos) { if (comma == std::string::npos) {
LOG(ERROR) << "Expected --per_worker_credential_types to be a list of the " LOG(ERROR)
"form: 'addr1,cred_type1;addr2,cred_type2;...' into."; << "Expected --per_worker_credential_types to be a list of the "
"form: 'addr1,cred_type1;addr2,cred_type2;...' into.";
abort(); abort();
} }
std::string addr = next_entry.substr(0, comma); std::string addr = next_entry.substr(0, comma);

Loading…
Cancel
Save