We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33ea420 commit 315febeCopy full SHA for 315febe
src/Grpc/Interop/test/testassets/InteropClient/InteropClient.cs
@@ -167,12 +167,10 @@ private async Task<IChannelWrapper> HttpClientCreateChannel()
167
httpClientHandler.ClientCertificates.Add(cert);
168
}
169
170
- var httpClient = new HttpClient(httpClientHandler);
171
-
172
var channel = GrpcChannel.ForAddress($"{scheme}://{options.ServerHost}:{options.ServerPort}", new GrpcChannelOptions
173
{
174
Credentials = credentials,
175
- HttpClient = httpClient,
+ HttpHandler = httpClientHandler,
176
LoggerFactory = loggerFactory
177
});
178
0 commit comments