Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Fix cache maxAge config key name (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayitbeegh authored and fieldju committed Sep 25, 2019
1 parent 6399543 commit 1abbda7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
# limitations under the License.
#

version=3.32.1
version=3.32.2
groupId=com.nike.cerberus
artifactId=cms
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ static class KmsDataKeyCachingOptionalPropertyHolder {
int encryptMaxSize = 0;

@Inject(optional=true)
@com.google.inject.name.Named("cms.encryption.cache.encrypt.maxAge")
@com.google.inject.name.Named("cms.encryption.cache.encrypt.maxAgeInSeconds")
int encryptMaxAge = 0;

@Inject(optional=true)
Expand All @@ -393,7 +393,7 @@ static class KmsDataKeyCachingOptionalPropertyHolder {
int decryptMaxSize = 0;

@Inject(optional=true)
@com.google.inject.name.Named("cms.encryption.cache.decrypt.maxAge")
@com.google.inject.name.Named("cms.encryption.cache.decrypt.maxAgeInSeconds")
int decryptMaxAge = 0;
}
}

0 comments on commit 1abbda7

Please sign in to comment.