Fixed - BloomFilter createBitSet method

Signed-off-by: Javed <javed.deng@gmail.com>
pull/4751/head
Javed 2 years ago
parent b0fbb5f6e2
commit 3b79c36529

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

Loading…
Cancel
Save