Fixed - RKeys doesn't use nameMapper. #4673

pull/4692/head
Nikita Koksharov 2 years ago
parent ab40499ce4
commit c8f8bb417e

@ -472,7 +472,7 @@ public class RedissonKeys implements RKeys {
@Override @Override
public RFuture<Boolean> expireAsync(String name, long timeToLive, TimeUnit timeUnit) { public RFuture<Boolean> expireAsync(String name, long timeToLive, TimeUnit timeUnit) {
return commandExecutor.writeAsync(name, StringCodec.INSTANCE, RedisCommands.PEXPIRE, map(name), return commandExecutor.writeAsync(map(name), StringCodec.INSTANCE, RedisCommands.PEXPIRE, map(name),
timeUnit.toMillis(timeToLive)); timeUnit.toMillis(timeToLive));
} }

Loading…
Cancel
Save