Skip to content

Commit

Permalink
goldarn spotless
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Florentine <[email protected]>
  • Loading branch information
jflo committed Nov 9, 2023
1 parent 71b1f01 commit 423f3ab
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ public BlobCache() {
this.cache =
Caffeine.newBuilder()
.maximumSize(6 * 32 * 3L) // 6 blobs max per 32 slots per 3 epochs
.expireAfterWrite(3*32*12L, TimeUnit.SECONDS) //3 epochs of 32 slots which take 12 seconds each.
.expireAfterWrite(
3 * 32 * 12L, TimeUnit.SECONDS) // 3 epochs of 32 slots which take 12 seconds each.
.build();
}

Expand Down

0 comments on commit 423f3ab

Please sign in to comment.