benchmark: Specify passthrough resolver to avoid resolution failures (#8231)

This commit is contained in:
Arjan Singh Bal 2025-04-08 09:02:40 +05:30 committed by GitHub
parent b368379ef8
commit db81a2cb4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ func makeClients(bf stats.Features) ([]testgrpc.BenchmarkServiceClient, func())
conns := make([]*grpc.ClientConn, bf.Connections)
clients := make([]testgrpc.BenchmarkServiceClient, bf.Connections)
for cn := 0; cn < bf.Connections; cn++ {
conns[cn] = benchmark.NewClientConn("" /* target not used */, opts...)
conns[cn] = benchmark.NewClientConn("passthrough://" /* target not used */, opts...)
clients[cn] = testgrpc.NewBenchmarkServiceClient(conns[cn])
}