File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tensorstore/internal/grpc Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ bool GrpcClientCredentials::Use(
4747 tensorstore::Context context,
4848 std::shared_ptr<internal_grpc::GrpcAuthenticationStrategy> auth_strategy) {
4949 auto resource = context.GetResource <GrpcClientCredentials>().value ();
50- absl::MutexLock l (& credentials_mu);
50+ absl::MutexLock l (credentials_mu);
5151 bool result = (resource->auth_strategy_ == nullptr );
5252 resource->auth_strategy_ = std::move (auth_strategy);
5353 return result;
@@ -65,7 +65,7 @@ bool GrpcClientCredentials::Use(
6565
6666std::shared_ptr<internal_grpc::GrpcAuthenticationStrategy>
6767GrpcClientCredentials::Resource::GetAuthenticationStrategy () {
68- absl::MutexLock l (& credentials_mu);
68+ absl::MutexLock l (credentials_mu);
6969 if (auth_strategy_) return auth_strategy_;
7070 return internal_grpc::CreateInsecureAuthenticationStrategy ();
7171}
You can’t perform that action at this time.
0 commit comments