aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Core/Server.cs
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-10-17 23:49:11 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-10-21 00:04:23 +0200
commit76ce3b9dec6417d2449c7fcb8f17b365e23444f4 (patch)
tree70da8d2c26b05717b5483a3100c240d68b13a34f /src/csharp/Grpc.Core/Server.cs
parenta00698fc444230ef4b0c8a787d4579ea5f0a5f17 (diff)
request more rpcs per thread
Diffstat (limited to 'src/csharp/Grpc.Core/Server.cs')
-rw-r--r--src/csharp/Grpc.Core/Server.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.Core/Server.cs b/src/csharp/Grpc.Core/Server.cs
index a11f1a8846..5daef462b7 100644
--- a/src/csharp/Grpc.Core/Server.cs
+++ b/src/csharp/Grpc.Core/Server.cs
@@ -47,7 +47,7 @@ namespace Grpc.Core
/// </summary>
public class Server
{
- const int InitialAllowRpcTokenCountPerCq = 10;
+ const int InitialAllowRpcTokenCountPerCq = 1000;
static readonly ILogger Logger = GrpcEnvironment.Logger.ForType<Server>();
readonly AtomicCounter activeCallCounter = new AtomicCounter();