Skip to content

Commit

Permalink
fixup: Fuzzer compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
eugeneo committed Jan 24, 2024
1 parent 93f59c6 commit 75973ec
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/core/xds/xds_client_fuzzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -228,10 +228,9 @@ class Fuzzer {
void DumpClientConfigBinary() {
upb::Arena arena;
auto client_config = envoy_service_status_v3_ClientConfig_new(arena.ptr());
XdsApi::ResourceMetadata metadata_map;
std::vector<std::string> strings_holder;
xds_client_->DumpClientConfig(client_config, &metadata_map, &strings_holder,
arena.ptr());
std::vector<std::unique_ptr<std::string>> string_pool;
grpc_core::MutexLock lock(xds_client_->mutex());
xds_client_->DumpClientConfig(client_config, &string_pool, arena.ptr());
}

void TriggerConnectionFailure(const std::string& authority,
Expand Down

0 comments on commit 75973ec

Please sign in to comment.