Skip to content

Commit

Permalink
docs(params): fix parameter descriptions for minTimeRatio and maxTime…
Browse files Browse the repository at this point in the history
…Ratio
  • Loading branch information
yanghang8612 committed Apr 22, 2024
1 parent e7c8d40 commit 963868e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ public class CommonParameter {
@Getter
@Setter
@Parameter(names = {"--min-time-ratio"}, description = "Maximum CPU tolerance when executing "
+ "non-timeout transactions while synchronizing blocks. (default: 5.0)")
+ "timeout transactions while synchronizing blocks. (default: 0.0)")
public double minTimeRatio = 0.0;
@Getter
@Setter
@Parameter(names = {"--max-time-ratio"}, description = "Maximum CPU tolerance when executing "
+ "timeout transactions while synchronizing blocks. (default: 0.0)")
+ "non-timeout transactions while synchronizing blocks. (default: 5.0)")
public double maxTimeRatio = calcMaxTimeRatio();
@Getter
@Setter
Expand Down

0 comments on commit 963868e

Please sign in to comment.