Browse Source

Fix build some more after changes for gh-84

pull/95/head
Dave Syer 12 years ago
parent
commit
cd5bc83533
  1. 5
      spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/EndpointWebMvcAutoConfiguration.java

5
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/EndpointWebMvcAutoConfiguration.java

@ -184,8 +184,9 @@ public class EndpointWebMvcAutoConfiguration implements ApplicationContextAware, @@ -184,8 +184,9 @@ public class EndpointWebMvcAutoConfiguration implements ApplicationContextAware,
}
return managementServerProperties.getPort() == null
|| serverProperties.getPort() == null
|| serverProperties.getPort().equals(
managementServerProperties.getPort()) ? SAME : DIFFERENT;
&& managementServerProperties.getPort().equals(8080)
|| managementServerProperties.getPort().equals(
serverProperties.getPort()) ? SAME : DIFFERENT;
}
};
}

Loading…
Cancel
Save