Skip to content

Commit

Permalink
#457 - standort DETAILS buggy (#458)
Browse files Browse the repository at this point in the history
- fix wrong bucket capacity for detailed obfuscated site results
  • Loading branch information
michael-82 authored Feb 25, 2025
1 parent d4ffa08 commit 2693013
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private Bucket newDetailedResultBucket(String userId) {

private Bucket newViewDetailedObfuscatedResultBucket(String userId) {
return Bucket.builder()
.addLimit(limit -> limit.capacity(1).refillIntervally(1, intervalDetailedObfuscated))
.addLimit(limit -> limit.capacity(amountDetailedObfuscated).refillIntervally(1, intervalDetailedObfuscated))
.build();
}

Expand Down

0 comments on commit 2693013

Please sign in to comment.