提交 f5ae9820 编写于 作者: N Nikita Koksharov

Fixed - nameMapper isn't applied to RTopic object. #3721

上级 ba0cebbe
...@@ -72,7 +72,7 @@ public class RedissonTopic implements RTopic { ...@@ -72,7 +72,7 @@ public class RedissonTopic implements RTopic {
public RedissonTopic(Codec codec, CommandAsyncExecutor commandExecutor, NameMapper nameMapper, String name) { public RedissonTopic(Codec codec, CommandAsyncExecutor commandExecutor, NameMapper nameMapper, String name) {
this.commandExecutor = commandExecutor; this.commandExecutor = commandExecutor;
this.name = nameMapper.map(name); this.name = nameMapper.map(name);
this.channelName = new ChannelName(name); this.channelName = new ChannelName(this.name);
this.codec = codec; this.codec = codec;
this.subscribeService = commandExecutor.getConnectionManager().getSubscribeService(); this.subscribeService = commandExecutor.getConnectionManager().getSubscribeService();
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册