benchmarks: honor transport in AsyncClient

This commit is contained in:
Carl Mastrangelo 2016-05-27 11:55:18 -07:00
parent 361936401f
commit 9f37951680
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}