Skip to content

Commit

Permalink
[#1421] delete not using configs for servicecomb (#1422) (#1426)
Browse files Browse the repository at this point in the history
  • Loading branch information
chengyouling authored Jan 14, 2025
1 parent 1e0d6b1 commit fe1e2a2
Showing 1 changed file with 0 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,10 @@ public class DiscoveryBootstrapProperties {

private boolean watch = false;

private boolean enableZoneAware = false;

private String address;

private String hostname;

private boolean preferIpAddress;

private boolean healthCheck = true;

private int healthCheckInterval = 15;
Expand Down Expand Up @@ -108,14 +104,6 @@ public void setEnabled(boolean enabled) {
this.enabled = enabled;
}

public boolean isEnableZoneAware() {
return enableZoneAware;
}

public void setEnableZoneAware(boolean enableZoneAware) {
this.enableZoneAware = enableZoneAware;
}

public String getHostname() {
return hostname;
}
Expand All @@ -124,14 +112,6 @@ public void setHostname(String hostname) {
this.hostname = hostname;
}

public boolean isPreferIpAddress() {
return preferIpAddress;
}

public void setPreferIpAddress(boolean preferIpAddress) {
this.preferIpAddress = preferIpAddress;
}

public boolean isHealthCheck() {
return healthCheck;
}
Expand Down Expand Up @@ -244,10 +224,8 @@ public String toString() {
"enabled=" + enabled +
", order=" + order +
", watch=" + watch +
", enableZoneAware=" + enableZoneAware +
", address='" + address + '\'' +
", hostname='" + hostname + '\'' +
", preferIpAddress=" + preferIpAddress +
", healthCheck=" + healthCheck +
", healthCheckInterval=" + healthCheckInterval +
", healthCheckRequestTimeout=" + healthCheckRequestTimeout +
Expand Down

0 comments on commit fe1e2a2

Please sign in to comment.