You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by GitBox <gi...@apache.org> on 2019/10/10 03:45:23 UTC

[GitHub] [rocketmq] geektao opened a new issue #1512: MQPullConsumerScheduleService.registerPullTaskCallback() handle namespace imperfect

geektao opened a new issue #1512: MQPullConsumerScheduleService.registerPullTaskCallback() handle namespace imperfect
URL: https://github.com/apache/rocketmq/issues/1512
 
 
   
   `    public void registerPullTaskCallback(final String topic, final PullTaskCallback callback) {
           this.callbackTable.put(topic, callback);
           this.defaultMQPullConsumer.registerMessageQueueListener(topic, null);
       }
   `
   in method registerPullTaskCallback,  'this.callbackTable.put(topic, callback)' handle topic without namespace . but next line ' this.defaultMQPullConsumer.registerMessageQueueListener(topic, null)' handle  topic with namespace .
   
   And when broker has namespace ,will cause can not find topic’s PullTaskCallback 。
   
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services