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

DRY
This commit is contained in:
Spencer Gibb
2015-09-28 15:58:59 -06:00

View File

@@ -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