Shoothzj commented on a change in pull request #13390:
URL: https://github.com/apache/pulsar/pull/13390#discussion_r773519463



##########
File path: 
pulsar-client/src/main/java/org/apache/pulsar/client/impl/conf/ClientConfigurationData.java
##########
@@ -295,6 +295,19 @@
     @JsonIgnore
     private Clock clock = Clock.systemDefaultZone();
 
+    @ApiModelProperty(
+            name = "dnsLookupBindAddress",
+            value = "The Pulsar client dns lookup bind address."

Review comment:
       > Can you add the default value and that it means the client will bind 
to `0.0.0.0`?
   
   @michaeljmarshall the default behavior is similar, but it's not bind to 
`0.0.0.0`.
   
   ```java
           if (localAddress == null) {
               future = b.register();
           } else {
               future = b.bind(localAddress);
           }
   ```




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

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to