We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65823e5 commit 87bfb90Copy full SHA for 87bfb90
src/main/java/edu/harvard/iq/dataverse/util/cache/CacheFactoryBean.java
@@ -29,14 +29,12 @@ public class CacheFactoryBean implements java.io.Serializable {
29
30
@PostConstruct
31
public void init() {
32
- logger.severe(">>>> CacheFactoryBean init ");
33
rateLimitCache = manager.getCache(RATE_LIMIT_CACHE);
34
if (rateLimitCache == null) {
35
CompleteConfiguration<String, String> config =
36
new MutableConfiguration<String, String>()
37
.setTypes( String.class, String.class );
38
rateLimitCache = manager.createCache(RATE_LIMIT_CACHE, config);
39
- logger.severe(">>>> rateLimitCache.getClass() " + rateLimitCache.getClass().getName());
40
}
41
42
0 commit comments