Skip to content

Commit

Permalink
fix review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
m-nagarajan committed Sep 19, 2023
1 parent ff9b764 commit 33bb703
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import java.util.Optional;
import java.util.Set;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.TimeUnit;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

Expand All @@ -36,8 +35,7 @@ public class StatsAvroGenericStoreClient<K, V> extends DelegatingAvroStoreClient

private final int maxAllowedKeyCntInBatchGetReq;
private final boolean useStreamingBatchGetAsDefault;
private final RedundantExceptionFilter redundantExceptionFilter =
new RedundantExceptionFilter(RedundantExceptionFilter.DEFAULT_BITSET_SIZE, TimeUnit.SECONDS.toMillis(1));
private final RedundantExceptionFilter redundantExceptionFilter = new RedundantExceptionFilter();

public StatsAvroGenericStoreClient(InternalAvroStoreClient<K, V> delegate, ClientConfig clientConfig) {
super(delegate);
Expand Down

0 comments on commit 33bb703

Please sign in to comment.