Merge pull request #560 from markdroth/create-pull-request/patch-6995b07

Automated fix for refs/heads/gcp_auth_race_fix
pull/37831/head
Mark D. Roth 4 months ago committed by GitHub
commit f2a0d1dd79
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc

@ -184,9 +184,9 @@ GcpAuthenticationFilter::Create(const ChannelArgs& args,
// cache but it has the wrong size.
cache->SetMaxSize(filter_config->cache_size);
// Instantiate filter.
return std::unique_ptr<GcpAuthenticationFilter>(new GcpAuthenticationFilter(
std::move(service_config), filter_config, std::move(xds_config),
std::move(cache)));
return std::unique_ptr<GcpAuthenticationFilter>(
new GcpAuthenticationFilter(std::move(service_config), filter_config,
std::move(xds_config), std::move(cache)));
}
GcpAuthenticationFilter::GcpAuthenticationFilter(

Loading…
Cancel
Save