Skip to content

Commit

Permalink
assert True issue
Browse files Browse the repository at this point in the history
Signed-off-by: Maxwell Brown <[email protected]>
  • Loading branch information
Galactus22625 committed Jan 6, 2025
1 parent 0f5e6f1 commit 21b2b97
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,15 +202,6 @@ public boolean isNotAwsSigv4AndAwsOption() {
@Size(min = 1, message = "Region cannot be empty string")
private String awsRegion = DEFAULT_AWS_REGION;

@Deprecated
@AssertTrue(message = "aws_region option cannot be used along with aws option. It is preferred to only use aws option as aws_region is deprecated.")
public boolean isNotAwsRegionAndAwsOption() {
if (awsAuthenticationOptions != null && awsRegion != null) {
return false;
}
return true;
}

@Deprecated
@Getter
@JsonProperty("aws_sts_role_arn")
Expand Down Expand Up @@ -302,7 +293,5 @@ public boolean isNotDocumentIdFieldAndDocumentId() {
@Getter
@JsonProperty("routing_field")
private String routingField = null;


}

0 comments on commit 21b2b97

Please sign in to comment.