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/04/07 09:00:40 UTC

[GitHub] [rocketmq] LvChenhui opened a new issue #1142: benchmark consumer's option namesrvAddr can't effect

LvChenhui opened a new issue #1142: benchmark consumer's option namesrvAddr can't effect 
URL: https://github.com/apache/rocketmq/issues/1142
 
 
   **BUG REPORT**
   
   1. Please describe the issue you observed:
   
   - What did you do (The steps to reproduce)?
     org.apache.rocketmq.example.benchmark.Consumer  
     set namesrvAddr invalid.because the consumer don't have the same as producer
   ```
           if (commandLine.hasOption('n')) {
               String ns = commandLine.getOptionValue('n');
               producer.setNamesrvAddr(ns);
           }
   ```
   
   - What did you expect to see?
   add
   ```
           if (commandLine.hasOption('n')) {
               String ns = commandLine.getOptionValue('n');
               consumer.setNamesrvAddr(ns);
           }
   ````
   
   - What did you see instead?
   
   2. Please tell us about your environment:
   
   3. Other information (e.g. detailed explanation, logs, related issues, suggestions how to fix, etc):
   

----------------------------------------------------------------
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