Make sure that xattr are cached long enough (even for long amc script runs)

This commit is contained in:
Reinhard Pointner 2016-05-17 00:43:40 +08:00
parent 86b0776c2d
commit cf2fe796bc
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ public enum CacheType {
Daily(Duration.ofHours(18), true),
Ephemeral(Duration.ofHours(4), false);
Ephemeral(Duration.ofDays(1), false);
final long timeToLiveSeconds;
final boolean diskPersistent;