Fallback to server.port if management.port not set.

See gh-896
This commit is contained in:
Spencer Gibb
2016-03-10 17:30:46 -07:00
parent a1857556ed
commit 4f31596e4f

View File

@@ -61,14 +61,14 @@ public class SidecarConfiguration {
@Autowired
private InetUtils inetUtils;
@Value("${management.port:${MANAGEMENT_PORT:${PORT:8080}}}")
@Value("${management.port:${MANAGEMENT_PORT:${server.port:${SERVER_PORT:${PORT:8080}}}}}")
private int managementPort = 8080;
@Value("${eureka.instance.hostname:${EUREKA_INSTANCE_HOSTNAME:}}")
String hostname;
private String hostname;
@Autowired
ConfigurableEnvironment env;
private ConfigurableEnvironment env;
@Bean
public EurekaInstanceConfigBean eurekaInstanceConfigBean() {