You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@inlong.apache.org by GitBox <gi...@apache.org> on 2021/07/28 11:19:44 UTC

[GitHub] [incubator-inlong] dockerzhang opened a new issue #658: [INLONG-59] Null pointer exception is thrown while constructing ConsumerConfig with MasterInfo, while directly using String is ok

dockerzhang opened a new issue #658:
URL: https://github.com/apache/incubator-inlong/issues/658


   <p>String masterHostAndPorts = "..."<br/>
   ConsumerConfig consumerConfig = new ConsumerConfig(localIp, masterHostAndPorts, consumerGroup);<br/>
   The above is running fine without exception.<br/>
   String masterHostAndPorts = "..."<br/>
   MasterInfo masterInfo = new MasterInfo(masterHostAndPorts);<br/>
   ConsumerConfig consumerConfig = new ConsumerConfig(localIp, masterInfo, consumerGroup);<br/>
   However, If I use MasterInfo to construct ConsumerConfig, A NPE will be thrown.</p>
   <i>JIRA link - <a href="https://issues.apache.org/jira/browse/INLONG-59">[INLONG-59]</a> created by marklaw</i>


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

To unsubscribe, e-mail: dev-unsubscribe@inlong.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-inlong] dockerzhang closed issue #658: [INLONG-59] Null pointer exception is thrown while constructing ConsumerConfig with MasterInfo, while directly using String is ok

Posted by GitBox <gi...@apache.org>.
dockerzhang closed issue #658:
URL: https://github.com/apache/incubator-inlong/issues/658


   


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

To unsubscribe, e-mail: dev-unsubscribe@inlong.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org