Skip to content

Commit

Permalink
fix: MinIOThreads
Browse files Browse the repository at this point in the history
  • Loading branch information
alexyakunin committed Dec 6, 2023
1 parent fbe2ce8 commit 245d4e4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions src/Benchmark/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
using Stl.Fusion.Server;
using Stl.Rpc;
using Stl.Rpc.Server;
using static System.Console;
using static Samples.Benchmark.Settings;

#pragma warning disable ASP0000

Expand Down
2 changes: 1 addition & 1 deletion src/RpcBenchmark/CommandLine/BenchmarkCommandBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public abstract class BenchmarkCommandBase : AsyncCommandBase
[ValueDescription("Number")]
[ValidateRange(1, null)]
[Alias("iot")]
public int MinIOThreads { get; set; } = HardwareInfo.ProcessorCount;
public int MinIOThreads { get; set; } = HardwareInfo.ProcessorCount * 10;

[CommandLineArgument]
[Description("ByteSerializer to use in Stl.Rpc tests.")]
Expand Down
1 change: 0 additions & 1 deletion src/RpcBenchmark/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System.Net;
using Ookii.CommandLine;
using Ookii.CommandLine.Commands;

Expand Down

0 comments on commit 245d4e4

Please sign in to comment.