fix microbenchmarks

pull/20149/head
Jan Tattermusch 5 years ago
parent 2ea334a60b
commit 7b54e095cb
  1. 2
      src/csharp/Grpc.Microbenchmarks/PingBenchmark.cs
  2. 2
      src/csharp/Grpc.Microbenchmarks/UnaryCallOverheadBenchmark.cs

@ -86,7 +86,7 @@ namespace Grpc.Microbenchmarks
await server.ShutdownAsync(); await server.ShutdownAsync();
} }
class PingClient : LiteClientBase class PingClient : ClientBase
{ {
public PingClient(CallInvoker callInvoker) : base(callInvoker) { } public PingClient(CallInvoker callInvoker) : base(callInvoker) { }
public AsyncUnaryCall<string> PingAsync(string request, CallOptions options) public AsyncUnaryCall<string> PingAsync(string request, CallOptions options)

@ -91,7 +91,7 @@ namespace Grpc.Microbenchmarks
await channel.ShutdownAsync(); await channel.ShutdownAsync();
} }
class PingClient : LiteClientBase class PingClient : ClientBase
{ {
public PingClient(CallInvoker callInvoker) : base(callInvoker) { } public PingClient(CallInvoker callInvoker) : base(callInvoker) { }

Loading…
Cancel
Save