From 9f37951680051a7f13da4bc4dc9bb69e032fb7bf Mon Sep 17 00:00:00 2001 From: Carl Mastrangelo Date: Fri, 27 May 2016 11:55:18 -0700 Subject: [PATCH] benchmarks: honor transport in AsyncClient --- .../main/java/io/grpc/benchmarks/qps/ClientConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/src/main/java/io/grpc/benchmarks/qps/ClientConfiguration.java b/benchmarks/src/main/java/io/grpc/benchmarks/qps/ClientConfiguration.java index 2ab79140b8..89b65d46bc 100644 --- a/benchmarks/src/main/java/io/grpc/benchmarks/qps/ClientConfiguration.java +++ b/benchmarks/src/main/java/io/grpc/benchmarks/qps/ClientConfiguration.java @@ -82,7 +82,7 @@ public class ClientConfiguration implements Configuration { } public ManagedChannel newChannel() throws IOException { - return Utils.newClientChannel(Transport.NETTY_EPOLL, address, tls, testca, authorityOverride, + return Utils.newClientChannel(transport, address, tls, testca, authorityOverride, useDefaultCiphers, flowControlWindow, directExecutor); }