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:
[email protected]


With regards,
Apache Git Services

Reply via email to