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 ea6fe1f commit b5ee674Copy full SHA for b5ee674
src/main/java/org/apache/ibatis/cache/decorators/ScheduledCache.java
@@ -28,7 +28,7 @@ public class ScheduledCache implements Cache {
28
29
public ScheduledCache(Cache delegate) {
30
this.delegate = delegate;
31
- this.clearInterval = 60 * 60 * 1000; // 1 hour
+ this.clearInterval = 60 * 60 * 1_000L; // 1 hour
32
this.lastClear = System.currentTimeMillis();
33
}
34
0 commit comments