Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Issue-3611: Print actual value that is being validated
Browse files Browse the repository at this point in the history
PR for #3611
  • Loading branch information
charybr authored May 11, 2023
1 parent 5bcd22a commit c698dc0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public enum RetryLogic {

@ProtoField(id = 3)
@Min(value = 0, message = "TaskDef retryCount: {value} must be >= 0")
@Max(value = 10, message = "TaskDef retryCount: {value} must be <=10")
@Max(value = 10, message = "TaskDef retryCount: ${validatedValue} must be <= {value}")
private int retryCount = 3; // Default

@ProtoField(id = 4)
Expand Down

0 comments on commit c698dc0

Please sign in to comment.