Skip to content

Commit

Permalink
fix: bug in BenchmarkCommandBase.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexyakunin committed Oct 11, 2023
1 parent 66fdd12 commit 907e316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RpcBenchmark/CommandLine/BenchmarkCommandBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public abstract class BenchmarkCommandBase : AsyncCommandBase
[CommandLineArgument]
[Description("ByteSerializer to use in Stl.Rpc tests.")]
[ValueDescription("MessagePack,MemoryPack")]
[ValidateRange(1, null)]
[ValidateRange(0, null)]
[Alias("bs")]
public ByteSerializerKind ByteSerializer { get; set; } = ByteSerializerKind.MessagePack;
}

0 comments on commit 907e316

Please sign in to comment.