Skip to content

Commit

Permalink
Merge pull request grpc#3863 from jtattermusch/csharp_prevent_timeout
Browse files Browse the repository at this point in the history
Restrict number of iterations for UnaryCallPerformance test
  • Loading branch information
dklempner committed Oct 16, 2015
2 parents 5e2db5b + 2ca1df1 commit b839682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/csharp/Grpc.Core.Tests/ClientServerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public void UnaryCallPerformance()
});

var callDetails = helper.CreateUnaryCall();
BenchmarkUtil.RunBenchmark(100, 100,
BenchmarkUtil.RunBenchmark(1, 10,
() => { Calls.BlockingUnaryCall(callDetails, "ABC"); });
}

Expand Down

0 comments on commit b839682

Please sign in to comment.