Skip to content

Commit

Permalink
Fix validation on uniqueRequestId to 250 character limit (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
victokoh authored Sep 16, 2020
1 parent bb33fc3 commit 4fed935
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ public interface ParameterizedScheduleBuilder {
* basis).
*
* @param uniqueRequestId The unique request id. May be {@code null}, but if non-null may be a
* maximum of 100 characters in length. It is advised that if these ids are client-supplied,
* maximum of 250 characters in length. It is advised that if these ids are client-supplied,
* they be prepended with some sort of context identifier to ensure global uniqueness.
* @return Builder.
*/
Expand All @@ -610,7 +610,7 @@ public interface ParameterizedScheduleBuilder {

private class ParameterizedScheduleBuilderImpl implements ParameterizedScheduleBuilder {

@Length(max = 100)
@Length(max = 250)
private String uniqueRequestId;

@Override
Expand Down

0 comments on commit 4fed935

Please sign in to comment.