🐛 Fix http client didn't ignore CA
This commit is contained in:
@@ -25,7 +25,10 @@ public class AccountRewindService(
|
||||
var httpClient = httpClientFactory.CreateClient(
|
||||
$"{nameof(AccountRewindService)}+{CapitalizeFirstLetter(serviceId)}"
|
||||
);
|
||||
var channel = GrpcChannel.ForAddress($"https://_grpc.{serviceId}", new GrpcChannelOptions { HttpClient = httpClient });
|
||||
var channel = GrpcChannel.ForAddress($"https://_grpc.{serviceId}", new GrpcChannelOptions
|
||||
{
|
||||
HttpClient = httpClient,
|
||||
});
|
||||
return new RewindService.RewindServiceClient(channel);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user