Skip to content

Commit

Permalink
Merge pull request #39 from fbelzunc/JENKINS-36212
Browse files Browse the repository at this point in the history
[JENKINS-36212] Not serialize userCache, neither groupCache
  • Loading branch information
fbelzunc committed Jul 21, 2016
2 parents 5ab6bfd + af4f0ec commit 52435d4
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -17,12 +17,12 @@ public class CacheConfiguration<K,V,E extends Exception> {
/**
* The {@link UserDetails} cache.
*/
private final Cache<String, UserDetails> userCache;
private transient final Cache<String, UserDetails> userCache;

/**
* The {@link ActiveDirectoryGroupDetails} cache.
*/
private final Cache<String, ActiveDirectoryGroupDetails> groupCache;
private transient final Cache<String, ActiveDirectoryGroupDetails> groupCache;

/**
* CacheConfiguration DataBoundConstructor
Expand Down

0 comments on commit 52435d4

Please sign in to comment.