This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git.
from c6d1c0e Upgrade Spring Cloud Zookeeper to version 2.2.2.RELEASE new aa37c45 came-health - Spring Boot. WIP new f539061 came-health - Spring Boot. WIP The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../src/main/docs/spring-boot.adoc | 14 +- .../camel/spring/boot/CamelAutoConfiguration.java | 2 + .../health/CamelHealthAutoConfiguration.java | 55 ------- .../health/CamelHealthCheckAutoConfiguration.java | 128 +++++++++++++++ .../CamelHealthCheckConfigurationProperties.java | 173 +++++++++++++++++++++ ...dicator.java => CamelHealthCheckIndicator.java} | 52 ++++--- .../health/AbstractHealthCheckConfiguration.java | 49 ------ .../health/HealthCheckRoutesAutoConfiguration.java | 61 -------- .../health/HealthCheckRoutesConfiguration.java | 36 ----- .../health/HealthCheckVerboseConfiguration.java | 36 ----- .../spring/boot/health/HealthConfiguration.java | 35 ----- .../camel/spring/boot/health/HealthConstants.java | 24 --- .../src/main/resources/META-INF/spring.factories | 3 +- .../boot/actuate/health/CamelHealthTest.java | 12 +- docs/modules/ROOT/pages/spring-boot.adoc | 10 +- 15 files changed, 351 insertions(+), 339 deletions(-) delete mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/health/CamelHealthAutoConfiguration.java create mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/health/CamelHealthCheckAutoConfiguration.java create mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/health/CamelHealthCheckConfigurationProperties.java rename core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/health/{CamelHealthIndicator.java => CamelHealthCheckIndicator.java} (53%) delete mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/health/AbstractHealthCheckConfiguration.java delete mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/health/HealthCheckRoutesAutoConfiguration.java delete mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/health/HealthCheckRoutesConfiguration.java delete mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/health/HealthCheckVerboseConfiguration.java delete mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/health/HealthConfiguration.java delete mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/health/HealthConstants.java