Merge pull request #4751 from javed119/master

Fixed - BloomFilter createBitSet method
pull/3899/head^2
Nikita Koksharov 2 years ago committed by GitHub
commit 51e98c458c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -187,7 +187,7 @@ public class RedissonBloomFilter<T> extends RedissonExpirable implements RBloomF
} }
protected RBitSetAsync createBitSet(CommandBatchService executorService) { protected RBitSetAsync createBitSet(CommandBatchService executorService) {
return new RedissonBitSet(executorService, getRawName()); return new RedissonBitSet(executorService, getName());
} }
private void addConfigCheck(int hashIterations, long size, CommandBatchService executorService) { private void addConfigCheck(int hashIterations, long size, CommandBatchService executorService) {

Loading…
Cancel
Save