Skip to content

Commit

Permalink
Fixes #323 to prevent serialization of token expiry (#325)
Browse files Browse the repository at this point in the history
Co-authored-by: saville <[email protected]>
  • Loading branch information
bluesliverx and saville authored Mar 23, 2024
1 parent 22d5fab commit 3b57135
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public void setUsePolicies(Boolean usePolicies) {
this.usePolicies = usePolicies;
}

private Map<String, Calendar> tokenExpiry;
private Map<String, String> tokenCache;
private transient Map<String, Calendar> tokenExpiry;
private transient Map<String, String> tokenCache;

protected AbstractVaultTokenCredentialWithExpiration(CredentialsScope scope, String id,
String description) {
Expand Down

0 comments on commit 3b57135

Please sign in to comment.