Shoothzj commented on a change in pull request #13390:
URL: https://github.com/apache/pulsar/pull/13390#discussion_r773520002
##########
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."
+ )
+ private String dnsLookupBindAddress = null;
+
+ @ApiModelProperty(
+ name = "dnsLookupBindPort",
+ value = "The Pulsar client dns lookup bind port, takes effect when
dnsLookupBindAddress is configured." +
+ " default value is 0."
+ )
+ private int dnsLookupBindPort = 0;
Review comment:
0 means a random port
--
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]