-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#1411] support designated IPV4/IPV6 type configuration for register endpoint #1412
Conversation
…r register endpoint
@@ -74,6 +74,8 @@ public class DiscoveryBootstrapProperties { | |||
// enabled: true | |||
private boolean enableServicePolling = false; | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's better to use a boolean
configuration to check if prefer ipv4 or ipv6. Or you can use an enum.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
@@ -32,7 +32,7 @@ public class DiscoveryBootstrapProperties { | |||
|
|||
private boolean watch = false; | |||
|
|||
private boolean enableZoneAware = false; | |||
private boolean enabledZoneAware = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why change this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Undo the modification
No description provided.