diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2016-05-18 21:44:15 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2016-05-18 21:44:15 -0700 |
commit | d0f5f720356b697d6d5837f44f0c85429fcdad89 (patch) | |
tree | c515018e8195582bb208238b95afffe2861d75e5 /src/csharp/Grpc.IntegrationTesting | |
parent | 29d414c32a5f3f9f19f0a741676457b7ddf68276 (diff) |
return number of cores from server
Diffstat (limited to 'src/csharp/Grpc.IntegrationTesting')
-rw-r--r-- | src/csharp/Grpc.IntegrationTesting/WorkerServiceImpl.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting/WorkerServiceImpl.cs b/src/csharp/Grpc.IntegrationTesting/WorkerServiceImpl.cs index 80dad9fdd9..c9eca73452 100644 --- a/src/csharp/Grpc.IntegrationTesting/WorkerServiceImpl.cs +++ b/src/csharp/Grpc.IntegrationTesting/WorkerServiceImpl.cs @@ -64,7 +64,7 @@ namespace Grpc.Testing { Stats = runner.GetStats(false), Port = runner.BoundPort, - Cores = 0, // TODO: set number of cores + Cores = Environment.ProcessorCount, }); while (await requestStream.MoveNext()) |