Skip to content

Commit

Permalink
Fixed - RKeys doesn't use nameMapper. #4673
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Koksharov committed Nov 22, 2022
1 parent ab40499 commit c8f8bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redisson/src/main/java/org/redisson/RedissonKeys.java
Expand Up @@ -472,7 +472,7 @@ public boolean expire(String name, long timeToLive, TimeUnit timeUnit) {

@Override
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));
}

Expand Down

0 comments on commit c8f8bb4

Please sign in to comment.