Commit 0141a13c by Spencer Gibb

Merge pull request #557 from boostrack-cloud/boostrack-patch-1

DRY
parents aa862673 9c144220
......@@ -112,11 +112,10 @@ public class EurekaDiscoveryClient implements DiscoveryClient {
@Override
public int getPort() {
// assume if secure is enabled, that is the default
if (!this.instance.isPortEnabled(SECURE)) {
return this.instance.getPort();
if (isSecure()) {
return this.instance.getSecurePort();
}
return this.instance.getSecurePort();
return this.instance.getPort();
}
@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