Skip to content

Commit

Permalink
[grid] Fixing parameter annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol committed Mar 10, 2021
1 parent 536084e commit d8c0d8e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@
public class NodeFlags implements HasRoles {

@Parameter(
names = "--max-sessions. Default value is the number of available processors.",
description = "Maximum number of concurrent sessions.")
names = {"--max-sessions"},
description = "Maximum number of concurrent sessions. Default value is the number "
+ "of available processors.")
@ConfigValue(section = NODE_SECTION, name = "max-sessions", example = "8")
public int maxSessions = DEFAULT_MAX_SESSIONS;

Expand Down

0 comments on commit d8c0d8e

Please sign in to comment.