Commit 9c144220 by boostrack

DRY

parent b10bf9c3
...@@ -112,11 +112,10 @@ public class EurekaDiscoveryClient implements DiscoveryClient { ...@@ -112,11 +112,10 @@ public class EurekaDiscoveryClient implements DiscoveryClient {
@Override @Override
public int getPort() { public int getPort() {
// assume if secure is enabled, that is the default if (isSecure()) {
if (!this.instance.isPortEnabled(SECURE)) { return this.instance.getSecurePort();
return this.instance.getPort();
} }
return this.instance.getSecurePort(); return this.instance.getPort();
} }
@Override @Override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment