This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
The following commit(s) were added to refs/heads/main by this push: new 9c93f74c208 Add missing license header 9c93f74c208 is described below commit 9c93f74c208666362e6503a9dda14dec24771d82 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Wed Feb 7 09:38:07 2024 +0100 Add missing license header --- .../health/AsyncHealthIndicatorAutoConfiguration.java | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/health/AsyncHealthIndicatorAutoConfiguration.java b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/health/AsyncHealthIndicatorAutoConfiguration.java index 0a58d9e3b3c..d43e87373a6 100644 --- a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/health/AsyncHealthIndicatorAutoConfiguration.java +++ b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/health/AsyncHealthIndicatorAutoConfiguration.java @@ -1,3 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.apache.camel.spring.boot.actuate.health; import org.apache.camel.spring.boot.actuate.health.liveness.CamelLivenessStateHealthIndicator; @@ -24,7 +40,6 @@ import java.time.ZonedDateTime; * will be added in spring boot 3.2.x as a new feature in the future. * * TODO: To be refactored once async health contributors feature will be added in spring boot. - * */ @Configuration @ConditionalOnProperty(prefix = "camel.health", name = "async-camel-health-check", havingValue = "true")