Skip to content

Commit

Permalink
fix long line formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Buhtoyarov committed May 5, 2024
1 parent 89fd0e3 commit a013988
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,9 @@ CREATE TABLE IF NOT EXISTS bucket(id BIGINT PRIMARY KEY, state BYTEA, expires_at
----
PostgreSQLSelectForUpdateBasedProxyManager<Long> proxyManager = Bucket4jPostgreSQL
.selectForUpdateBasedBuilder(dataSource)
.expirationAfterWrite(ExpirationAfterWriteStrategy.basedOnTimeForRefillingBucketUpToMax(Duration.ofSeconds(60)))
.expirationAfterWrite(basedOnTimeForRefillingBucketUpToMax(Duration.ofSeconds(60)))
.build();
...
private static final int MAX_TO_REMOVE_IN_ONE_TRANSACTION = 1_000;
private static final int THRESHOLD_TO_CONTINUE_REMOVING = 50;
Expand Down

0 comments on commit a013988

Please sign in to comment.