Skip to content

Commit

Permalink
set default value
Browse files Browse the repository at this point in the history
  • Loading branch information
usmansaleem committed Aug 1, 2023
1 parent d4420ac commit ffbbda7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,9 @@ public AzureKeyVaultParameters getAzureKeyVaultConfig() {
@CommandLine.Option(
names = {"--aws-kms-client-cache-size"},
paramLabel = "<LONG>",
defaultValue = "1",
description =
"AWS Kms Client Cache size. Should be set based on different set of credentials and region (default: ${DEFAULT-VALUE})")
"AWS Kms Client cache size. Should be set based on different set of credentials and region (default: ${DEFAULT-VALUE})")
public void setAwsKmsClientCacheSize(long awsKmsClientCacheSize) {
if (awsKmsClientCacheSize < 1) {
throw new CommandLine.ParameterException(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@ protected void validateArgs() {
@CommandLine.Option(
names = {"--aws-kms-client-cache-size"},
paramLabel = "<LONG>",
defaultValue = "1",
description =
"AWS Kms Client Cache size. Should be set based on different set of credentials and region (default: ${DEFAULT-VALUE})")
"AWS Kms Client cache size. Should be set based on different set of credentials and region (default: ${DEFAULT-VALUE})")
public void setAwsKmsClientCacheSize(long awsKmsClientCacheSize) {
if (awsKmsClientCacheSize < 1) {
throw new CommandLine.ParameterException(
Expand Down

0 comments on commit ffbbda7

Please sign in to comment.